* unexpected end.
*/
public void parse(String s) throws ParseException, EOFException {
if(s!=null && s.length()>0 && strategyFactory!=null) {
Reader r = new StringReader(s);
ParserStrategy ps = strategyFactory.createParserStrategy(r);
ps.parse();
}
}