Lines Matching refs:i

66             int i = ((Indexable) child).getIndex();  in add()  local
68 while (getSize() <= i) in add()
72 childrenList.set(i, child); in add()
73 if (oldSize > i) in add()
75 oldSize = i; in add()
77 fireListDataListenerIntervalAdded(oldSize, i); in add()
86 public void add(int i, Object o) in add() argument
88 int name = i; in add()
94 childrenList.add(i, o); in add()
96 fireListDataListenerIntervalAdded(i, i); in add()
112 for (int i = 0; i < children.length; i++) in writeConfiguration()
116 Configuration.removeNode(configView, children[i]); in writeConfiguration()
123 for (int i = 0; i < names.length; i++) in writeConfiguration()
127 ConfigNode child = (ConfigNode) getElement(names[i]); in writeConfiguration()
128 Object childView = Configuration.addConfigNode(configView, (String) names[i]); in writeConfiguration()
151 for (int i = 0; i < names.length; i++) in readConfiguration()
157 … child.readConfiguration(Configuration.getNode(names[i], configurationView), param); in readConfiguration()
158 add(names[i], child); in readConfiguration()
168 for (int i = 0; i < childrenList.size(); i++) in readConfiguration()
170 if (childrenList.get(i) == null) in readConfiguration()
172 childrenList.remove(i--); in readConfiguration()
180 for (int i = 0; i < names.length; i++) in readConfiguration()
184 Object child = Configuration.getNode(names[i], configurationView); in readConfiguration()
185 add(names[i], child); in readConfiguration()
199 int i = childrenList.indexOf(obj); in remove() local
201 fireListDataListenerIntervalRemoved(i, i); in remove()
204 public void remove(int i) in remove() argument
206 Object o = getElementAt(i); in remove()
216 public void update(int i) in update() argument
218 fireListDataListenerContentsChanged(i, i); in update()
226 for (int i = 0; i < items.length; i++) in createDOM()
228 Object item = items[i]; in createDOM()
244 for (Iterator i = childrenMap.entrySet().iterator(); i.hasNext();) in getKey()
247 Map.Entry me = (Map.Entry) i.next(); in getKey()
256 public Object getKey(int i) in getKey() argument
259 while (i > -1) in getKey()
263 i--; in getKey()
317 for (int i = listeners.length - 2; i >= 0; i -= 2) in fireListDataListenerIntervalAdded()
319 if (listeners[i] == javax.swing.event.ListDataListener.class) in fireListDataListenerIntervalAdded()
321 ((javax.swing.event.ListDataListener) listeners[i + 1]).intervalAdded(event); in fireListDataListenerIntervalAdded()
339 for (int i = listeners.length - 2; i >= 0; i -= 2) in fireListDataListenerIntervalRemoved()
341 if (listeners[i] == javax.swing.event.ListDataListener.class) in fireListDataListenerIntervalRemoved()
343 ((javax.swing.event.ListDataListener) listeners[i + 1]).intervalRemoved(event); in fireListDataListenerIntervalRemoved()
361 for (int i = listeners.length - 2; i >= 0; i -= 2) in fireListDataListenerContentsChanged()
363 if (listeners[i] == javax.swing.event.ListDataListener.class) in fireListDataListenerContentsChanged()
365 ((javax.swing.event.ListDataListener) listeners[i + 1]).contentsChanged(event); in fireListDataListenerContentsChanged()
370 public Object getElementAt(int i) in getElementAt() argument
372 return childrenList.get(i); in getElementAt()
415 for (int i = 0; i < names.length; i++) in reindexSet()
417 if (!names[i].equals(memberName)) in reindexSet()
419 member = Configuration.getConfigurationNode(names[i], confView); in reindexSet()
433 for (int i = 0; i < v.size(); i++) in reindexSet()
435 member = v.get(i); in reindexSet()