}
/** Constructor with InputStream and supplied encoding */
public StyleSheetParser(java.io.InputStream stream, String encoding) {
try {
jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1);
} catch (java.io.UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
token_source = new StyleSheetParserTokenManager(jj_input_stream);
token = new Token();