Package org.jacorb.orb.etf

Examples of org.jacorb.orb.etf.ProfileBase.version()


        {
            out.println("\tProfile Id:\t\t" + i);

            ProfileBase profile = (ProfileBase)profiles.get(i);
            out.println("\tIIOP Version:\t\t" +
                               (int)profile.version().major + "." +
                               (int)profile.version().minor);
            if (profile instanceof IIOPProfile)
            {
                out.println("\tHost:\t\t\t" +
                  ((IIOPAddress)((IIOPProfile)profile).getAddress()).getOriginalHost());
View Full Code Here


            out.println("\tProfile Id:\t\t" + i);

            ProfileBase profile = (ProfileBase)profiles.get(i);
            out.println("\tIIOP Version:\t\t" +
                               (int)profile.version().major + "." +
                               (int)profile.version().minor);
            if (profile instanceof IIOPProfile)
            {
                out.println("\tHost:\t\t\t" +
                  ((IIOPAddress)((IIOPProfile)profile).getAddress()).getOriginalHost());
                int port = ((IIOPAddress)((IIOPProfile)profile).getAddress()).getPort();
View Full Code Here

            out.println("\tObject key (URL):\t" + CorbaLoc.parseKey( profile.get_object_key()));
            out.print  ("\tObject key (hex):\t0x" );
            dumpHex( profile.get_object_key(), out);
            out.println();

            if ( profile.version().minor >= ( char ) 1 )
            {
                if( profile.getComponents().size() > 0 )
                {
                    out.println("\t-- Found " +
                                       profile.getComponents().size() +
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.