final public JService Service() throws ParseException {
String name;
ArrayList<JMethod> methodList = new ArrayList<JMethod>();
Token t;
JMethod m;
jj_consume_token(SERVICE_TKN);
t = jj_consume_token(IDENT_TKN);
name = t.image;
curService = name;
jj_consume_token(LBRACE_TKN);