Package org.foray.ps.encode

Examples of org.foray.ps.encode.CharSetParser


    /**
     * {@inheritDoc}
     */
    public CharSet parseCharSet(final String name, final InputStream inputStream) throws IOException, PsException {
        final CharSetParser parser = new CharSetParser(inputStream);
        parser.parseList();
        final CharSet4a charSet = new CharSet4a(name, parser.getCharacterSet());
        return charSet;
    }
View Full Code Here

TOP

Related Classes of org.foray.ps.encode.CharSetParser

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.