java.awt.peer.ChoicePeer Java Examples
The following examples show how to use
java.awt.peer.ChoicePeer.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Choice.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the {@code Choice} at the * specified position, but does not invalidate the {@code Choice}. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #2
Source File: Choice.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #3
Source File: Choice.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #4
Source File: Choice.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #5
Source File: Choice.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #6
Source File: Choice.java From JDKSourceCode1.8 with MIT License | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #7
Source File: Choice.java From JDKSourceCode1.8 with MIT License | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #8
Source File: Choice.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #9
Source File: Choice.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #10
Source File: Choice.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #11
Source File: Choice.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #12
Source File: Choice.java From jdk-1.7-annotated with Apache License 2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #13
Source File: Choice.java From Bytecoder with Apache License 2.0 | 6 votes |
/** * Removes an item from the {@code Choice} at the * specified position, but does not invalidate the {@code Choice}. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #14
Source File: Choice.java From jdk-1.7-annotated with Apache License 2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #15
Source File: Choice.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this {@code Choice}, * but does not invalidate the {@code Choice}. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * {@code null} */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #16
Source File: Choice.java From Bytecoder with Apache License 2.0 | 6 votes |
/** * Inserts an item to this {@code Choice}, * but does not invalidate the {@code Choice}. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * {@code null} */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #17
Source File: Choice.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #18
Source File: Choice.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #19
Source File: Choice.java From Java8CN with Apache License 2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #20
Source File: Choice.java From Java8CN with Apache License 2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #21
Source File: Choice.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #22
Source File: Choice.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #23
Source File: Choice.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #24
Source File: Choice.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #25
Source File: Choice.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #26
Source File: Choice.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #27
Source File: Choice.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #28
Source File: Choice.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }
Example #29
Source File: Choice.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
/** * Inserts an item to this <code>Choice</code>, * but does not invalidate the <code>Choice</code>. * Client methods must provide their own synchronization before * invoking this method. * @param item the item to be added * @param index the new item position * @exception NullPointerException if the item's value is equal to * <code>null</code> */ private void insertNoInvalidate(String item, int index) { if (item == null) { throw new NullPointerException("cannot add null item to Choice"); } pItems.insertElementAt(item, index); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.add(item, index); } // no selection or selection shifted up if (selectedIndex < 0 || selectedIndex >= index) { select(0); } }
Example #30
Source File: Choice.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
/** * Removes an item from the <code>Choice</code> at the * specified position, but does not invalidate the <code>Choice</code>. * Client methods must provide their * own synchronization before invoking this method. * @param position the position of the item */ private void removeNoInvalidate(int position) { pItems.removeElementAt(position); ChoicePeer peer = (ChoicePeer)this.peer; if (peer != null) { peer.remove(position); } /* Adjust selectedIndex if selected item was removed. */ if (pItems.size() == 0) { selectedIndex = -1; } else if (selectedIndex == position) { select(0); } else if (selectedIndex > position) { select(selectedIndex-1); } }