Java Code Examples for java.awt.peer.ChoicePeer#add()

The following examples show how to use java.awt.peer.ChoicePeer#add() . 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 jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 2
Source File: Choice.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 jdk-1.7-annotated with Apache License 2.0 6 votes vote down vote up
/**
 * 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 4
Source File: Choice.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 5
Source File: Choice.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 8
Source File: Choice.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 9
Source File: Choice.java    From Java8CN with Apache License 2.0 6 votes vote down vote up
/**
 * 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 10
Source File: Choice.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * 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-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 12
Source File: Choice.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
/**
 * 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 13
Source File: Choice.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 14
Source File: Choice.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * 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 16
Source File: Choice.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 17
Source File: Choice.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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 dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * 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);
    }
}