/**
* {@inheritDoc}
*/
public GlyphList4a parseGlyphList(final String name, final InputStream inputStream) throws IOException,
PsException {
final GlyphListParser parser = new GlyphListParser(inputStream);
parser.parseList();
final GlyphList4a glyphList = new GlyphList4a(name, parser.getGlyphNames(), parser.getCodePointsForGlyphNames(),
parser.getCodePoints(), parser.getGlyphNameIndex());
return glyphList;
}