/* Production 66, chapter 3.4, corba 2.3.1 */ public void octet_type() { /*@bgen(jjtree) octet_type */ ASToctet_type jjtn000 = new ASToctet_type(this, IDLParserTreeConstants.JJTOCTET_TYPE); bool jjtc000 = true; jjtree.openNodeScope(jjtn000); try { jj_consume_token(58); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } }
/** * @see parser.IDLParserVisitor#visit(ASToctet_type, Object) * @param data unused * @return a TypeContainer for the octet type */ public Object visit(ASToctet_type node, Object data) { TypeContainer container = new TypeContainer(typeof(System.Byte)); return container; }