Examples of CDRInputStream


Examples of org.jacorb.orb.CDRInputStream

    * on subclasses having satisfactorily implemented the
    * {@link #readAddressProfile()} method.
    */
    protected void initFromProfileData(byte[] data)
    {
        CDRInputStream in = new CDRInputStream(null, data);
        in.openEncapsulatedArray();

        readAddressProfile(in);
       
        int length = in.read_ulong();
       
        objectKey = new byte[length];
        in.read_octet_array(objectKey, 0, length);
       
        components = (version != null && version.minor > 0) ? new TaggedComponentList(in)
                                                            : new TaggedComponentList();
    }
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.