Examples of read_string()


Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                case TCKind._tk_abstract_interface:
                    {
                        // get the repository id
                        setId(_encap.read_string());
                        // get the name
                        _name = _encap.read_string();
                    }
                    break;

                case TCKind._tk_union:
                    {
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                    break;

                case TCKind._tk_union:
                    {
                        // get the repository id
                        setId(_encap.read_string());

                        // get the name
                        _name = _encap.read_string();

                        // discriminant typecode
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                    {
                        // get the repository id
                        setId(_encap.read_string());

                        // get the name
                        _name = _encap.read_string();

                        // discriminant typecode
                        _discriminator = new TypeCodeImpl((ORB)is.orb());
                        _discriminator.read_value_recursive(_encap);
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                                    break;
                                default:
                                    throw wrapper.invalidComplexTypecode() ;
                                }
                            }
                            _memberNames[i] = _encap.read_string();
                            _memberTypes[i] = new TypeCodeImpl((ORB)is.orb());
                            _memberTypes[i].read_value_recursive(_encap);
                            _memberTypes[i].setParent(this);
                        }
                    }
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                    break;

                case TCKind._tk_enum:
                    {
                        // get the repository id
                        setId(_encap.read_string());

                        // get the name
                        _name = _encap.read_string();

                        // get the number of members
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                    {
                        // get the repository id
                        setId(_encap.read_string());

                        // get the name
                        _name = _encap.read_string();

                        // get the number of members
                        _memberCount = _encap.read_long();

                        // create arrays for the identifier names
View Full Code Here

Examples of com.sun.corba.se.impl.encoding.TypeCodeInputStream.read_string()

                        // create arrays for the identifier names
                        _memberNames = new String[_memberCount];

                        // read off identifier names
                        for (int i=0; i < _memberCount; i++)
                            _memberNames[i] = _encap.read_string();
                    }
                    break;

                case TCKind._tk_sequence:
                    {
View Full Code Here

Examples of org.apache.geronimo.corba.codeset.CharConverter.read_string()

            int pos = tag_position + off;
            return (String) __lookup_value(pos);
        } else {
            int pos = tag_position;
            CharConverter converter = __get_char_converter();
            String value = converter.read_string(this, tag);
            __register_value(pos, value);
            return value;
        }
    }
View Full Code Here

Examples of org.apache.geronimo.corba.io.EncapsulationInputStream.read_string()

        return port;
    }

    public static Component read(AbstractORB orb, byte[] data) {
        EncapsulationInputStream in = new EncapsulationInputStream(orb, data);
        String host = in.read_string();
        int port = in.read_short() & 0xffff;
        return new AlternateIIOPComponent(orb, host, port);
    }

}
View Full Code Here

Examples of org.apache.yoko.orb.CORBA.InputStream.read_string()

                                org.apache.yoko.orb.OCI.Buffer b = new org.apache.yoko.orb.OCI.Buffer(
                                        d, d.length);
                                InputStream s = new InputStream(b, 0, false,
                                        null, 0);
                                s._OB_readEndian();
                                String altHost = s.read_string();
                                short altPort = s.read_ushort();
                                if (portNo == altPort
                                        && hostMatch(host, altHost,
                                                loopbackMatches)) {
                                    match = true;
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.