Examples of supported_interfaces()


Examples of org.omg.CORBA.ValueDef.supported_interfaces()

    public Interface[] getInterfaces()
    {
    if (interfaces==null) {
            // interfaces in unserem dazugehörigen Field speichern
            ValueDef valueDef = ValueDefHelper.narrow((org.omg.CORBA.Object)irObject);
            InterfaceDef[] supportedInterfaces = valueDef.supported_interfaces();
            interfaces = new IRInterface[supportedInterfaces.length];
            for (int i=0; i<supportedInterfaces.length; i++) {
                // für alle base interfaces die zugehörige TypeSystemNode holen
                IRInterface intf = (IRInterface)RemoteTypeSystem.createTypeSystemNode(supportedInterfaces[i]);
                interfaces[i] = intf;
View Full Code Here

Examples of org.omg.CORBA.ValueDef.supported_interfaces()

    public Interface[] getInterfaces()
    {
    if (interfaces==null) {
            // store interfaces in our corresponding field
            ValueDef valueDef = ValueDefHelper.narrow(irObject);
            InterfaceDef[] supportedInterfaces = valueDef.supported_interfaces();
            interfaces = new IRInterface[supportedInterfaces.length];
            for (int i=0; i<supportedInterfaces.length; i++) {
                // for each base interface get the corresponding TypeSystemNode
                IRInterface intf = (IRInterface)RemoteTypeSystem.createTypeSystemNode(supportedInterfaces[i]);
                interfaces[i] = intf;
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.