Package org.omg.CORBA.ContainedPackage

Examples of org.omg.CORBA.ContainedPackage.Description


      Any any = getORB().create_any();

      ValueDescriptionHelper.insert(any, md);

      return new Description(DefinitionKind.dk_Value, any);
   }
View Full Code Here


      Any any = getORB().create_any();

      ExceptionDescriptionHelper.insert(any, ed);

      return new Description(DefinitionKind.dk_Exception, any);
   }
View Full Code Here

      Any any = getORB().create_any();

      ConstantDescriptionHelper.insert(any, d);

      return new Description(DefinitionKind.dk_Constant, any);
   }
View Full Code Here

      Any any = getORB().create_any();

      ModuleDescriptionHelper.insert(any, md);

      return new Description(DefinitionKind.dk_Module, any);
   }
View Full Code Here

      Any any = getORB().create_any();
      TypeDescriptionHelper.insert(any, td);
      return new Description(DefinitionKind.dk_Typedef, any);
   }
View Full Code Here

/*    */
/* 75 */     Any any = getORB().create_any();
/*    */
/* 77 */     TypeDescriptionHelper.insert(any, td);
/*    */
/* 79 */     return new Description(DefinitionKind.dk_Typedef, any);
/*    */   }
View Full Code Here

/*     */
/* 132 */     Any any = getORB().create_any();
/*     */
/* 134 */     ValueMemberHelper.insert(any, d);
/*     */
/* 136 */     return new Description(DefinitionKind.dk_ValueMember, any);
/*     */   }
View Full Code Here

/* 177 */       defined_in_id = ((ContainedOperations)this.defined_in).id();
/*     */     }
/*     */
/* 180 */     ExceptionDescription[] exds = new ExceptionDescription[this.exceptions.length];
/* 181 */     for (int i = 0; i < this.exceptions.length; i++) {
/* 182 */       Description d = this.exceptions[i].describe();
/* 183 */       exds[i] = ExceptionDescriptionHelper.extract(d.value);
/*     */     }
/*     */
/* 187 */     OperationDescription od = new OperationDescription(this.name, this.id, defined_in_id, this.version, this.typeCode, mode(), contexts(), params(), exds);
/*     */
/* 190 */     Any any = getORB().create_any();
/*     */
/* 192 */     OperationDescriptionHelper.insert(any, od);
/*     */
/* 194 */     return new Description(DefinitionKind.dk_Operation, any);
/*     */   }
View Full Code Here

/*     */
/* 148 */     Any any = getORB().create_any();
/*     */
/* 150 */     ConstantDescriptionHelper.insert(any, d);
/*     */
/* 152 */     return new Description(DefinitionKind.dk_Constant, any);
/*     */   }
View Full Code Here

/*     */
/* 134 */     Any any = getORB().create_any();
/*     */
/* 136 */     AttributeDescriptionHelper.insert(any, d);
/*     */
/* 138 */     return new Description(DefinitionKind.dk_Attribute, any);
/*     */   }
View Full Code Here

TOP

Related Classes of org.omg.CORBA.ContainedPackage.Description

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.