Example #1
0
/* Production 98, chapter 3.4, corba 2.3.1 */
  public void value_base_type() {
 /*@bgen(jjtree) value_base_type */
  ASTvalue_base_type jjtn000 = new ASTvalue_base_type(this, IDLParserTreeConstants.JJTVALUE_BASE_TYPE);
  bool jjtc000 = true;
  jjtree.openNodeScope(jjtn000);
    try {
      jj_consume_token(84);
    } finally {
      if (jjtc000) {
        jjtree.closeNodeScope(jjtn000, true);
      }
    }
  }
 /**
  * @see parser.IDLParserVisitor#visit(ASTvalue_base_type, Object)
  * @return a Type Container for the Corba type ValueBase
  */
 public Object visit(ASTvalue_base_type node, Object data) {
     AttributeExtCollection attrs = new AttributeExtCollection(
         new Attribute[] { new ObjectIdlTypeAttribute(IdlTypeObject.ValueBase) });
     TypeContainer container = new TypeContainer(typeof(System.Object), attrs);
     return container;
 }