예제 #1
0
/* Production 68, chapter 3.4, corba 2.3.1 */
  public void object_type() {
 /*@bgen(jjtree) object_type */
  ASTobject_type jjtn000 = new ASTobject_type(this, IDLParserTreeConstants.JJTOBJECT_TYPE);
  bool jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
    try {
      jj_consume_token(60);
    } finally {
    if (jjtc000) {
      jjtree.closeNodeScope(jjtn000, true);
    }
    }
  }
 /**
  * @see parser.IDLParserVisitor#visit(ASTobject_type, Object)
  * @param data unused
  * @return a TypeContainer for the Object type
  */
 public Object visit(ASTobject_type node, Object data) {
     TypeContainer container = new TypeContainer(typeof(System.MarshalByRefObject));
     return container;
 }