1 19 20 package org.netbeans.editor; 21 22 32 33 public interface ObjectArray { 34 35 42 public Object getItem(int index); 43 44 47 public int getItemCount(); 48 49 50 58 public interface CopyItems { 59 60 68 public void copyItems(int srcStartIndex, int srcEndIndex, 69 Object [] dest, int destIndex); 70 71 } 72 73 74 public interface Modification { 75 76 public ObjectArray getArray(); 77 78 public int getIndex(); 79 80 public Object [] getAddedItems(); 81 82 public int getRemovedItemsCount(); 83 } 84 85 } 86 | Popular Tags |