Searched defs:newIndex (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableColumnModel.java73 * <code>newIndex</code>. The old column at <code>columnIndex</code>
74 * will now be found at <code>newIndex</code>. The column that used
75 * to be at <code>newIndex</code> is shifted left or right
77 * <code>columnIndex</code> equals <code>newIndex</code>. This method
81 * @param newIndex index of the column's new location
83 * <code>newIndex</code>
86 public void moveColumn(int columnIndex, int newIndex); argument
H A DDefaultTableColumnModel.java163 * <code>newIndex</code>. The old column at <code>columnIndex</code>
164 * will now be found at <code>newIndex</code>. The column
165 * that used to be at <code>newIndex</code> is shifted
167 * <code>columnIndex</code> equals <code>newIndex</code>. This method
171 * @param newIndex new index to move the column
173 * <code>newIndex</code>
176 public void moveColumn(int columnIndex, int newIndex) { argument
178 (newIndex < 0) || (newIndex >= getColumnCount()))
189 if (columnIndex == newIndex) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DContextManager.java181 public int setCurrentFrameIndex(ThreadReference t, int newIndex) throws VMNotInterruptedException { argument
182 return setCurrentFrameIndex(t, newIndex, false);
185 public int setCurrentFrameIndex(int newIndex) throws VMNotInterruptedException { argument
189 return setCurrentFrameIndex(currentThread, newIndex, false);
201 int newIndex = relative? oldIndex + x : x;
202 if (newIndex > maxIndex) {
203 newIndex = maxIndex;
204 } else if (newIndex < 0) {
205 newIndex = 0;
207 if (!sameThread || newIndex !
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyConstructedImpl.java151 public boolean seek(int newIndex) { argument
155 if (newIndex < 0) {
162 if (newIndex < components.length) {
163 index = newIndex;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java234 names[i] = fixed.newIndex(i);
1314 Name newIndex(int i) { method in class:LambdaForm.Name
1540 return CONSTANT_ZERO[ALL_TYPES.indexOf(type)].newIndex(which);
1555 Name n = new Name(zcon).newIndex(0);
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java534 private boolean removeDelicately(Component comp, Container newParent, int newIndex) { argument
561 // add it by the newIndex without newIndex decrement if even we shift components to the left
566 component.add(newIndex, comp);

Completed in 65 milliseconds