File: Prioritized.java

package info (click to toggle)
libjide-oss-java 3.7.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,264 kB
  • sloc: java: 89,463; xml: 268; makefile: 35
file content (16 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.jidesoft.swing;

/**
 * An interface to indicate something that has priority. The priority is just an int value. Although it is up to
 * developer to decide which priority value is higher than the other, we suggest the higher value, the higher priority
 * with 0 means default priority when priority is not specified.
 */
public interface Prioritized {
    /**
     * Gets the priority. The value could be from Integer.MIN_VALUE to Integer.MAX_VALUE with 0 as the default
     * priority.
     *
     * @return the priority
     */
    int getPriority();
}