File: Element.java

package info (click to toggle)
libglazedlists-java 1.8.0.dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,016 kB
  • sloc: java: 21,991; xml: 860; sh: 48; makefile: 5
file content (34 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Glazed Lists                                                 (c) 2003-2006 */
/* http://publicobject.com/glazedlists/                      publicobject.com,*/
/*                                                     O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl.adt.barcode2;

/**
 * The exposed interface of a node.
 *
 * @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
 */
public interface Element<V> {

    /** a node that's greater than its predecessor and less than its successor */
    public static final int SORTED = 0;
    /** a node whose value is unrelated to those of its predecessor or successor */
    public static final int UNSORTED = 1;
    /** a node that's in-work, no inserts or deletes should be performed when nodes are in this state */
    public static final int PENDING = 2;


    V get();

    void set(V value);

    byte getColor();

    void setSorted(int sorted);

    int getSorted();

    Element<V> next();

    Element<V> previous();
}