Package fr.xlim.ssd.capmanipulator.library

Examples of fr.xlim.ssd.capmanipulator.library.InternalClassRef


        ClassRef classRef;
        Short buf = in.readShort();

        // if the most significant bit is 0 it's a internal class ref
        if ((buf & 0x8000) >>> 15 == 0) {
            classRef = new InternalClassRef();
            ((InternalClassRef) classRef).setInternalClassRef(buf);
        } else {
            // case of an external class ref
            classRef = new ExternalClassRef();
            ((ExternalClassRef) classRef).setClassToken(buf.byteValue());
View Full Code Here

TOP

Related Classes of fr.xlim.ssd.capmanipulator.library.InternalClassRef

Copyright © 2018 www.massapicom. 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.