Package org.omg.CORBA

Examples of org.omg.CORBA.InterfaceDescription


        if (defined_in instanceof org.omg.CORBA.ContainedOperations)
            defined_in_id = ((org.omg.CORBA.ContainedOperations) defined_in).id();

        org.omg.CORBA.InterfaceDescription md =
                new InterfaceDescription(name, id, defined_in_id, version,
                        base_interfaces, false);

        Any any = getORB().create_any();

        InterfaceDescriptionHelper.insert(any, md);
View Full Code Here


        if (defined_in instanceof org.omg.CORBA.ContainedOperations)
            defined_in_id = ((org.omg.CORBA.ContainedOperations) defined_in).id();

        org.omg.CORBA.InterfaceDescription md =
                new InterfaceDescription(name, id, defined_in_id, version,
                        base_interfaces, false);

        Any any = getORB().create_any();

        InterfaceDescriptionHelper.insert(any, md);
View Full Code Here

      if (defined_in instanceof org.omg.CORBA.ContainedOperations)
         defined_in_id = ((org.omg.CORBA.ContainedOperations)defined_in).id();
      org.omg.CORBA.InterfaceDescription md =
                   new InterfaceDescription(name, id, defined_in_id, version,
                                            base_interfaces, false);
      Any any = getORB().create_any();

      InterfaceDescriptionHelper.insert(any, md);
View Full Code Here

/* 366 */     String defined_in_id = "IR";
/*     */
/* 368 */     if ((this.defined_in instanceof ContainedOperations)) {
/* 369 */       defined_in_id = ((ContainedOperations)this.defined_in).id();
/*     */     }
/* 371 */     InterfaceDescription md = new InterfaceDescription(this.name, this.id, defined_in_id, this.version, this.base_interfaces, false);
/*     */
/* 375 */     Any any = getORB().create_any();
/*     */
/* 377 */     InterfaceDescriptionHelper.insert(any, md);
/*     */
View Full Code Here

        if (defined_in instanceof org.omg.CORBA.ContainedOperations)
            defined_in_id = ((org.omg.CORBA.ContainedOperations) defined_in).id();

        org.omg.CORBA.InterfaceDescription md =
                new InterfaceDescription(name, id, defined_in_id, version,
                        base_interfaces, false);

        Any any = getORB().create_any();

        InterfaceDescriptionHelper.insert(any, md);
View Full Code Here

TOP

Related Classes of org.omg.CORBA.InterfaceDescription

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.