Class IdResolver


  • @Deprecated
    public class IdResolver
    extends java.lang.Object
    Deprecated.
    Purpose of this class is to enable the XML Parser to keep track of ID attributes. This is done by 'registering' attributes of type ID at the IdResolver.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private IdResolver()
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static org.w3c.dom.Element getElementById​(org.w3c.dom.Document doc, java.lang.String id)
      Deprecated.
      Method getElementById
      static void registerElementById​(org.w3c.dom.Element element, org.w3c.dom.Attr id)
      Deprecated.
      Method registerElementById
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IdResolver

        private IdResolver()
        Deprecated.
    • Method Detail

      • registerElementById

        public static void registerElementById​(org.w3c.dom.Element element,
                                               org.w3c.dom.Attr id)
        Deprecated.
        Method registerElementById
        Parameters:
        element - the element to register
        id - the ID attribute
      • getElementById

        public static org.w3c.dom.Element getElementById​(org.w3c.dom.Document doc,
                                                         java.lang.String id)
        Deprecated.
        Method getElementById
        Parameters:
        doc - the document
        id - the value of the ID
        Returns:
        the element obtained by the id, or null if it is not found.