Package org.omg.CORBA

Examples of org.omg.CORBA.AttributeDescription


        }

        AttributeDescription[] atts = fvd.attributes;
        FieldDescriptor[] new_fields = new FieldDescriptor[atts.length];
        for (int i = 0; i < atts.length; i++) {
            AttributeDescription att = atts[i];
            new_fields[i] = findField(att);
        }

        _fields = new_fields;
    }
View Full Code Here


        String defined_in_id = "IR";

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

        AttributeDescription d =
                new AttributeDescription(name, id, defined_in_id, version,
                        typeCode, mode);

        Any any = getORB().create_any();

        AttributeDescriptionHelper.insert(any, d);
View Full Code Here

            /* build attribute descriptions */
            Hashtable atts = new Hashtable();

            for( int a = 0; a < att_defs.length; a++ )
            {
                AttributeDescription att = att_defs[a].describe_attribute();
                atts.put( att.name, att );
            }

            /* get attribute descriptions from super types */

            for( int baseAtts = 0; baseAtts < baseDescriptions.length; baseAtts++ )
            {
                for( int bbaseAtts = 0;
                     bbaseAtts < baseDescriptions[ baseAtts ].attributes.length;
                     bbaseAtts++ )
                {
                    AttributeDescription base_att =
                        baseDescriptions[ baseAtts ].attributes[ bbaseAtts ];

                    if( !atts.containsKey( base_att.name ))
                        atts.put( base_att.name, base_att );
                }
View Full Code Here

        }

        AttributeDescription[] atts = fvd.attributes;
        FieldDescriptor[] new_fields = new FieldDescriptor[atts.length];
        for (int i = 0; i < atts.length; i++) {
            AttributeDescription att = atts[i];
            new_fields[i] = findField(att);
        }

        _fields = new_fields;
    }
View Full Code Here

        String defined_in_id = "IR";

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

        AttributeDescription d =
                new AttributeDescription(name, id, defined_in_id, version,
                        typeCode, mode);

        Any any = getORB().create_any();

        AttributeDescriptionHelper.insert(any, d);
View Full Code Here

            /* build attribute descriptions */
            Hashtable atts = new Hashtable();

            for( int a = 0; a < att_defs.length; a++ )
            {
                AttributeDescription att = att_defs[a].describe_attribute();
                atts.put( att.name, att );
            }

            /* get attribute descriptions from super types */

            for( int baseAtts = 0; baseAtts < baseDescriptions.length; baseAtts++ )
            {
                for( int bbaseAtts = 0;
                     bbaseAtts < baseDescriptions[ baseAtts ].attributes.length;
                     bbaseAtts++ )
                {
                    AttributeDescription base_att =
                        baseDescriptions[ baseAtts ].attributes[ bbaseAtts ];

                    if( !atts.containsKey( base_att.name ))
                        atts.put( base_att.name, base_att );
                }
View Full Code Here

            /* build attribute descriptions */
            Hashtable atts = new Hashtable();

            for( int a = 0; a < att_defs.length; a++ )
            {
                AttributeDescription att = att_defs[a].describe_attribute();
                atts.put( att.name, att );
            }

            /* get attribute descriptions from super types */

            for( int baseAtts = 0; baseAtts < baseDescriptions.length; baseAtts++ )
            {
                for( int bbaseAtts = 0;
                     bbaseAtts < baseDescriptions[ baseAtts ].attributes.length;
                     bbaseAtts++ )
                {
                    AttributeDescription base_att =
                        baseDescriptions[ baseAtts ].attributes[ bbaseAtts ];

                    if( !atts.containsKey( base_att.name ))
                        atts.put( base_att.name, base_att );
                }
View Full Code Here

      String defined_in_id = "IR";
      if (defined_in instanceof ContainedOperations)
         defined_in_id = ((ContainedOperations)defined_in).id();
      AttributeDescription d =
                   new AttributeDescription(name, id, defined_in_id, version,
                                            typeCode, mode);
      Any any = getORB().create_any();

      AttributeDescriptionHelper.insert(any, d);
View Full Code Here

/* 125 */     String defined_in_id = "IR";
/*     */
/* 127 */     if ((this.defined_in instanceof ContainedOperations)) {
/* 128 */       defined_in_id = ((ContainedOperations)this.defined_in).id();
/*     */     }
/* 130 */     AttributeDescription d = new AttributeDescription(this.name, this.id, defined_in_id, this.version, this.typeCode, this.mode);
/*     */
/* 134 */     Any any = getORB().create_any();
/*     */
/* 136 */     AttributeDescriptionHelper.insert(any, d);
/*     */
View Full Code Here

            /* build attribute descriptions */
            Hashtable atts = new Hashtable();

            for( int a = 0; a < att_defs.length; a++ )
            {
                AttributeDescription att = att_defs[a].describe_attribute();
                atts.put( att.name, att );
            }

            /* get attribute descriptions from super types */

            for( int baseAtts = 0; baseAtts < baseDescriptions.length; baseAtts++ )
            {
                for( int bbaseAtts = 0;
                     bbaseAtts < baseDescriptions[ baseAtts ].attributes.length;
                     bbaseAtts++ )
                {
                    AttributeDescription base_att =
                        baseDescriptions[ baseAtts ].attributes[ bbaseAtts ];

                    if( !atts.containsKey( base_att.name ))
                        atts.put( base_att.name, base_att );
                }
View Full Code Here

TOP

Related Classes of org.omg.CORBA.AttributeDescription

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.