Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.StringPair


        }
        return vfi;
    }

    public static StringPair readStringPair(IDataReader dr) throws IOException {
        StringPair sp = new StringPair();
        sp.setLength(dr.readWord());
        sp.setValueLength(dr.readWord());
        sp.setType(dr.readWord());
        sp.setKey(dr.readUnicode());
        if (sp.getKey().length() % 2 == 0) {
            dr.readWord();
            sp.setPadding(2);
        }
        sp.setValue(dr.readUnicode());
        return sp;
    }
View Full Code Here

TOP

Related Classes of org.boris.pecoff4j.resources.StringPair

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.