< prev index next >

src/java.corba/share/classes/com/sun/tools/corba/se/idl/ValueBoxEntry.java

Print this page




  60     super (that, clone);
  61   } // ctor
  62 
  63   public Object clone ()
  64   {
  65     return new ValueBoxEntry (this);
  66   } // clone
  67 
  68   /** Invoke the interface generator.
  69       @param symbolTable the symbol table is a hash table whose key is a fully
  70        qualified type name and whose value is a SymtabEntry or a subclass of
  71        SymtabEntry.
  72       @param stream the stream to which the generator should sent its output.
  73       @see SymtabEntry */
  74   public void generate (Hashtable symbolTable, PrintWriter stream)
  75   {
  76      valueBoxGen.generate (symbolTable, this, stream);
  77   } // generate
  78 
  79   /** Access the value generator.
  80       @returns an object which implements the ValueGen interface.
  81       @see ValueGen */
  82   public Generator generator ()
  83   {
  84     return valueBoxGen;
  85   } // generator
  86 
  87   static ValueBoxGen valueBoxGen;
  88 } // class ValueEntry


  60     super (that, clone);
  61   } // ctor
  62 
  63   public Object clone ()
  64   {
  65     return new ValueBoxEntry (this);
  66   } // clone
  67 
  68   /** Invoke the interface generator.
  69       @param symbolTable the symbol table is a hash table whose key is a fully
  70        qualified type name and whose value is a SymtabEntry or a subclass of
  71        SymtabEntry.
  72       @param stream the stream to which the generator should sent its output.
  73       @see SymtabEntry */
  74   public void generate (Hashtable symbolTable, PrintWriter stream)
  75   {
  76      valueBoxGen.generate (symbolTable, this, stream);
  77   } // generate
  78 
  79   /** Access the value generator.
  80       @return an object which implements the ValueGen interface.
  81       @see ValueGen */
  82   public Generator generator ()
  83   {
  84     return valueBoxGen;
  85   } // generator
  86 
  87   static ValueBoxGen valueBoxGen;
  88 } // class ValueEntry
< prev index next >