1 14 package commonj.sdo; 15 16 20 public interface Sequence 21 { 22 26 int size(); 27 28 34 Property getProperty(int index); 35 36 41 Object getValue(int index); 42 43 48 Object setValue(int index, Object value); 49 50 56 boolean add(String propertyName, Object value); 57 58 64 boolean add(int propertyIndex, Object value); 65 66 72 boolean add(Property property, Object value); 73 74 81 void add(int index, String propertyName, Object value); 82 83 90 void add(int index, int propertyIndex, Object value); 91 92 99 void add(int index, Property property, Object value); 100 101 105 void remove(int index); 106 107 112 void move(int toIndex, int fromIndex); 113 } 114 | Popular Tags |