sboag       00/12/18 06:06:06

  Modified:    java/src/org/apache/xalan/processor XSLTSchema.java
  Log:
  Added method to get the table of available elements.
  
  Revision  Changes    Path
  1.15      +11 -0     
xml-xalan/java/src/org/apache/xalan/processor/XSLTSchema.java
  
  Index: XSLTSchema.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/processor/XSLTSchema.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- XSLTSchema.java   2000/12/06 05:28:12     1.14
  +++ XSLTSchema.java   2000/12/18 14:06:06     1.15
  @@ -729,6 +729,17 @@
      * TODO:  When we convert to Java2, this should be a Set.
      */
     private Hashtable m_availElems = new Hashtable();
  +  
  +  /**
  +   * Get the table of available elements.
  +   * 
  +   * @return table of available elements, keyed by qualified names, and with 
  +   * values of the same qualified names.
  +   */
  +  public Hashtable getElemsAvailable() 
  +  {
  +    return m_availElems;
  +  }
   
     /**
      * Adds a new element name to the Hashtable of available elements.
  
  
  

Reply via email to