< prev index next >

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

Print this page




  80     includeGen.generate (symbolTable, this, stream);
  81   } // generate
  82 
  83   /** Access the Include type generator.
  84       @return an object which implements the IncludeGen interface.
  85       @see IncludeGen */
  86   public Generator generator ()
  87   {
  88     return includeGen;
  89   } // generator
  90 
  91   //d44810
  92   /** Set the fully-qualified file specification of this include file. */
  93   public void absFilename (String afn)
  94   {
  95     _absFilename = afn;
  96   }
  97 
  98   //d44810
  99   /** Access the fully-qualified file specification of this include.
 100       @returns a string containing the path of the include file. */
 101   public String absFilename ()
 102   {
 103     return _absFilename;
 104   }
 105 
 106   /** Add an IncludeEntry to the list of files which this included
 107       file includes. */
 108   public void addInclude (IncludeEntry entry)
 109   {
 110     includeList.addElement (entry);
 111   } // addInclude
 112 
 113   /** Get the list of files which this file includes. */
 114   public Vector includes ()
 115   {
 116     return includeList;
 117   } // includes
 118 
 119   static  IncludeGen includeGen;
 120   /** List of files this file includes */


  80     includeGen.generate (symbolTable, this, stream);
  81   } // generate
  82 
  83   /** Access the Include type generator.
  84       @return an object which implements the IncludeGen interface.
  85       @see IncludeGen */
  86   public Generator generator ()
  87   {
  88     return includeGen;
  89   } // generator
  90 
  91   //d44810
  92   /** Set the fully-qualified file specification of this include file. */
  93   public void absFilename (String afn)
  94   {
  95     _absFilename = afn;
  96   }
  97 
  98   //d44810
  99   /** Access the fully-qualified file specification of this include.
 100       @return a string containing the path of the include file. */
 101   public String absFilename ()
 102   {
 103     return _absFilename;
 104   }
 105 
 106   /** Add an IncludeEntry to the list of files which this included
 107       file includes. */
 108   public void addInclude (IncludeEntry entry)
 109   {
 110     includeList.addElement (entry);
 111   } // addInclude
 112 
 113   /** Get the list of files which this file includes. */
 114   public Vector includes ()
 115   {
 116     return includeList;
 117   } // includes
 118 
 119   static  IncludeGen includeGen;
 120   /** List of files this file includes */
< prev index next >