Package org.apache.geronimo.corba.io

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


        return TAG_ORB_TYPE.value;
    }

    public static Component read(AbstractORB orb, byte[] data) {
        InputStream is = new EncapsulationInputStream(orb, data);
        return new ORBTypeComponent(is.read_long());
    }

    protected void write_content(OutputStream eo) {
        eo.write_long(orbtype);
    }
View Full Code Here


                    map.put(new Integer(pos), tc);
                    tc.kind = TCKind.tk_union;
                    tc.id = encap_in.read_string();
                    tc.name = encap_in.read_string();
                    tc.discriminatorType = read(encap_in, toplevel, map);
                    int index = encap_in.read_long();
                    int count = encap_in.read_ulong();
                    tc.labels = new AnyImpl[count];
                    tc.memberNames = new String[count];
                    tc.memberTypes = new TypeCodeImpl[count];
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.