You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by jk...@apache.org on 2002/05/01 21:41:59 UTC

cvs commit: xml-xalan/java/src/org/apache/xml/dtm/ref ExpandedNameTable.java

jkesselm    02/05/01 12:41:59

  Modified:    java/src/org/apache/xml/dtm/ref Tag: Xalan3
                        ExpandedNameTable.java
  Log:
  Oops. Typo.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.3.10.3  +5 -5      xml-xalan/java/src/org/apache/xml/dtm/ref/ExpandedNameTable.java
  
  Index: ExpandedNameTable.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/ExpandedNameTable.java,v
  retrieving revision 1.3.10.2
  retrieving revision 1.3.10.3
  diff -u -r1.3.10.2 -r1.3.10.3
  --- ExpandedNameTable.java	1 May 2002 19:41:14 -0000	1.3.10.2
  +++ ExpandedNameTable.java	1 May 2002 19:41:59 -0000	1.3.10.3
  @@ -222,7 +222,7 @@
      * @param ExpandedNameID an ID that represents an expanded-name.
      * @return The id of this local name.
      */
  -  public /*static*/ /*final*/ int getLocalNameID(int ExpandedNameID)
  +  public /*static*/ final int getLocalNameID(int ExpandedNameID)
     {
       //return (ExpandedNameID & MASK_LOCALNAME);
       ExtendedType etype = (ExtendedType)m_extendedTypes.elementAt (ExpandedNameID);
  @@ -255,7 +255,7 @@
      * @param ExpandedNameID an ID that represents an expanded-name.
      * @return The id of this namespace.
      */
  -  public /*static*/ /*final*/ int getNamespaceID(int ExpandedNameID)
  +  public /*static*/ final int getNamespaceID(int ExpandedNameID)
     {
       //return (ExpandedNameID & MASK_NAMESPACE) >> BITS_PER_LOCALNAME;
       ExtendedType etype = (ExtendedType)m_extendedTypes.elementAt (ExpandedNameID);
  @@ -271,7 +271,7 @@
      * @param ExpandedNameID an ID that represents an expanded-name.
      * @return The id of this local name.
      */
  -  public /*final*/ short getType(int ExpandedNameID)
  +  public final short getType(int ExpandedNameID)
     {
       //return (short)(ExpandedNameID >> ROTAMOUNT_TYPE);
       ExtendedType etype = (ExtendedType)m_extendedTypes.elementAt (ExpandedNameID);
  @@ -284,7 +284,7 @@
      * @param ExpandedNameID an ID that represents an expanded-name.
      * @return a schema type object -- probably an XNI PSVI type.
      */
  -  public /*final*/ Object getSchemaType(int ExpandedNameID)
  +  public final Object getSchemaType(int ExpandedNameID)
     {
       ExtendedType etype = (ExtendedType)m_extendedTypes.elementAt (ExpandedNameID);
       return etype.schemaType;
  @@ -299,7 +299,7 @@
      * @return false if previously set to something different
      *  (as determined by Object.equals), otherwise true.
      */
  -  public /*final*/ boolean getSchemaType(int ExpandedNameID, Object schemaType)
  +  public final boolean setSchemaType(int ExpandedNameID, Object schemaType)
     {
       ExtendedType etype = (ExtendedType)m_extendedTypes.elementAt (ExpandedNameID);
       Object oldtype=etype.schemaType;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org