com.sun.corba.se.impl.corba.NVListImpl Java Examples

The following examples show how to use com.sun.corba.se.impl.corba.NVListImpl. 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: ORBSingleton.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #2
Source File: ORBSingleton.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #3
Source File: ORBSingleton.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #4
Source File: ORBSingleton.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #5
Source File: ORBSingleton.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #6
Source File: ORBSingleton.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #7
Source File: ORBSingleton.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #8
Source File: ORBSingleton.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #9
Source File: ORBSingleton.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #10
Source File: ORBSingleton.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public NVList create_list(int count) {
    return new NVListImpl(this, count);
}
 
Example #11
Source File: ORBImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #12
Source File: ORBImpl.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #13
Source File: ORBImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #14
Source File: ORBImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @return          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #15
Source File: ORBImpl.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #16
Source File: ORBImpl.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #17
Source File: ORBImpl.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #18
Source File: ORBImpl.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #19
Source File: ORBImpl.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}
 
Example #20
Source File: ORBImpl.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * Create an NVList
 *
 * @param count     size of list to create
 * @result          NVList created
 *
 * @see NVList
 */
public synchronized NVList create_list(int count)
{
    checkShutdownState();
    return new NVListImpl(this, count);
}