Package org.omg.CORBA

Examples of org.omg.CORBA.Contained


    // ContainerOperations implementation ----------------------------

    public Contained lookup(String search_name) {
        logger.debug("ValueDefImpl.lookup(\"" + search_name + "\") entered.");
        Contained res = delegate.lookup(search_name);
        logger.debug("ValueDefImpl.lookup(\"" + search_name +
                "\") returning " + ((res == null) ? "null" : "non-null"));
        return res;
        //return delegate.lookup(search_name);
    }
View Full Code Here


    // ContainerOperations implementation ----------------------------

    public Contained lookup(String search_name) {
        logger.debug("InterfaceDefImpl.lookup(\"" + search_name +
                "\") entered.");
        Contained res = delegate.lookup(search_name);
        logger.debug("InterfaceDefImpl.lookup(\"" + search_name +
                "\") returning " + ((res == null) ? "null" : "non-null"));
        return res;
        //return delegate.lookup(search_name);
    }
View Full Code Here

        if (base_interfaces_ref == null) {
            base_interfaces_ref = new InterfaceDef[base_interfaces.length];
            for (int i = 0; i < base_interfaces_ref.length; ++i) {
                logger.debug("InterfaceDefImpl.base_interfaces(): " +
                        "looking up \"" + base_interfaces[i] + "\".");
                Contained c = repository.lookup_id(base_interfaces[i]);
                logger.debug("InterfaceDefImpl.base_interfaces(): " +
                        "Got: " + ((c == null) ? "null" : c.id()));
                base_interfaces_ref[i] = InterfaceDefHelper.narrow(c);
                logger.debug("InterfaceDefImpl.base_interfaces(): " +
                        "ref: " + ((c == null) ? "null" : "not null"));
            }
        }
View Full Code Here

TOP

Related Classes of org.omg.CORBA.Contained

Copyright © 2018 www.massapicom. 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.