Package org.rlcommunity.rlglue.codec.types

Examples of org.rlcommunity.rlglue.codec.types.RL_abstract_type


    private final RL_abstract_type getAbstractType() {
        final int numInts = this.getInt();
        final int numDoubles = this.getInt();
        final int numChars = this.getInt();

        RL_abstract_type key = new RL_abstract_type(numInts, numDoubles, numChars);

        key.intArray = getInts(numInts);
        key.doubleArray = getDoubles(numDoubles);

        for (int i = 0; i < numChars; ++i) {
View Full Code Here

TOP

Related Classes of org.rlcommunity.rlglue.codec.types.RL_abstract_type

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.