30313233343536
public JCaseStatement( JExpression e ) { super(); _expr = e; _statements = new JBlockStatement(); }
25262728293031
protected JBlockStatement _finallyStatements; protected boolean _hasStatements = false; public JFinallyStatement( ) { _finallyStatements = new JBlockStatement(); }
40414243444546
protected JMethod( String name ) { super( name, Modifier.PUBLIC ); _statements = new Vector(); _bodyBlockStatement = new JBlockStatement(); }