1 7 package javax.swing.text; 8 9 16 public interface Element { 17 18 23 public Document getDocument(); 24 25 31 public Element getParentElement(); 32 33 40 public String getName(); 41 42 47 public AttributeSet getAttributes(); 48 49 59 public int getStartOffset(); 60 61 78 public int getEndOffset(); 79 80 94 public int getElementIndex(int offset); 95 96 102 public int getElementCount(); 103 104 110 public Element getElement(int index); 111 112 119 public boolean isLeaf(); 120 121 122 } 123 124 | Popular Tags |