Package org.omg.CORBA

Examples of org.omg.CORBA.TypeDescription


        String defined_in_id = "IR";

        if (defined_in instanceof ContainedOperations)
            defined_in_id = ((ContainedOperations) defined_in).id();

        TypeDescription td = new TypeDescription(name, id, defined_in_id,
                version, typeCode);

        Any any = getORB().create_any();

        TypeDescriptionHelper.insert(any, td);
View Full Code Here


      String defined_in_id = "IR";
      if (defined_in instanceof ContainedOperations)
         defined_in_id = ((ContainedOperations)defined_in).id();
      TypeDescription td = new TypeDescription(name, id, defined_in_id,
                                               version, typeCode);
      Any any = getORB().create_any();
      TypeDescriptionHelper.insert(any, td);
View Full Code Here

/* 67 */     String defined_in_id = "IR";
/*    */
/* 69 */     if ((this.defined_in instanceof ContainedOperations)) {
/* 70 */       defined_in_id = ((ContainedOperations)this.defined_in).id();
/*    */     }
/* 72 */     TypeDescription td = new TypeDescription(this.name, this.id, defined_in_id, this.version, this.typeCode);
/*    */
/* 75 */     Any any = getORB().create_any();
/*    */
/* 77 */     TypeDescriptionHelper.insert(any, td);
/*    */
View Full Code Here

TOP

Related Classes of org.omg.CORBA.TypeDescription

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.