Package org.omg.ETF

Examples of org.omg.ETF.Profile.tag()


    {
       int retVal = 0;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile p = (Profile) _profiles.get(i);
           if ( p.tag() == tag )
           {
              retVal++;
           }
       }
       return retVal;
View Full Code Here


       int cnt = position;
       Profile result = null;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile profile = (Profile) _profiles.get(i);
           if ( profile.tag() == tag && cnt == 0)
           {
              result = profile;
              break;
           }
           cnt--;
View Full Code Here

    {
       Profile result = null;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile profile = (Profile) _profiles.get(i);
           if ( profile.tag() == tag )
           {
              result = profile;
              break;
           }
       }
View Full Code Here

      for (Iterator<Profile> i = profiles.iterator (); i.hasNext ();)
      {
         Profile profile = i.next ();

         switch (profile.tag ())
         {
            case TAG_UIPMC.value:
            {
               miop = profile;
               break;
View Full Code Here

            return createCorbalocForMIOPProfile ((MIOPProfile)profile);
        }
        else
        {
            throw new IllegalArgumentException ("Profile type not suported: tag number=" +
                                                profile.tag ());
        }
    }


    /**
 
View Full Code Here

    {
       int retVal = 0;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile p = _profiles.get(i);
           if ( p.tag() == tag )
           {
              retVal++;
           }
       }
       return retVal;
View Full Code Here

       int cnt = position;
       Profile result = null;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile profile = _profiles.get(i);
           if ( profile.tag() == tag && cnt == 0)
           {
              result = profile;
              break;
           }
           cnt--;
View Full Code Here

    {
       Profile result = null;
       for (int i=0; i < _profiles.size(); i++)
       {
           Profile profile = _profiles.get(i);
           if ( profile.tag() == tag )
           {
              result = profile;
              break;
           }
       }
View Full Code Here

                continue;
            }

            profile.set_object_key (objectKey);
            profiles.add (profile);
            profileTags[n++] = profile.tag();

            TaggedComponentList profileComponents = new TaggedComponentList();
            profileComponents.addComponent(create_ORB_TYPE_ID());
            componentMap.put(Integer.valueOf(profile.tag()), profileComponents);
View Full Code Here

            profiles.add (profile);
            profileTags[n++] = profile.tag();

            TaggedComponentList profileComponents = new TaggedComponentList();
            profileComponents.addComponent(create_ORB_TYPE_ID());
            componentMap.put(Integer.valueOf(profile.tag()), profileComponents);

            if (profile instanceof ProfileBase)
            {
                // use proxy or ImR address if necessary
                patchAddress((ProfileBase)profile, repId, _transient);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.