Package org.omg.CORBA

Examples of org.omg.CORBA.ModuleDescription


        String defined_in_id = "IR";

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

        ModuleDescription md = new ModuleDescription(name, id, defined_in_id,
                version);

        Any any = getORB().create_any();

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


      String defined_in_id = "IR";
      if (defined_in instanceof ContainedOperations)
         defined_in_id = ((ContainedOperations)defined_in).id();
      ModuleDescription md = new ModuleDescription(name, id, defined_in_id,
                                                   version);
      Any any = getORB().create_any();

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

/* 240 */     String defined_in_id = "IR";
/*     */
/* 242 */     if ((this.defined_in instanceof ContainedOperations)) {
/* 243 */       defined_in_id = ((ContainedOperations)this.defined_in).id();
/*     */     }
/* 245 */     ModuleDescription md = new ModuleDescription(this.name, this.id, defined_in_id, this.version);
/*     */
/* 248 */     Any any = getORB().create_any();
/*     */
/* 250 */     ModuleDescriptionHelper.insert(any, md);
/*     */
View Full Code Here

TOP

Related Classes of org.omg.CORBA.ModuleDescription

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.