Examples of AnyImpl


Examples of com.sun.corba.se.impl.corba.AnyImpl

     * @return          the new Any created.
     */
    public synchronized Any create_any()
    {
        checkShutdownState();
        return new AnyImpl(this);
    }
View Full Code Here

Examples of com.sun.corba.se.impl.corba.AnyImpl

    {
        return get_primitive_tc( tckind.value() ) ;
    }

    public Any create_any() {
        return new AnyImpl(this);
    }
View Full Code Here

Examples of com.sun.corba.se.impl.corba.AnyImpl

     * @return          the new Any created.
     */
    public synchronized Any create_any()
    {
        checkShutdownState();
        return new AnyImpl(this);
    }
View Full Code Here

Examples of org.apache.geronimo.corba.AnyImpl

            value[i + offset] = read_any();
        }
    }

    public final Any read_any() {
        org.omg.CORBA.Any any = new AnyImpl(__orb());
        any.read_value(this, read_TypeCode());
        return any;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.