Class NodeClassFilter

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, NodeFilter

    public class NodeClassFilter
    extends java.lang.Object
    implements NodeFilter
    This class accepts all tags of a given class.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Class mClass
      The class to match.
    • Constructor Summary

      Constructors 
      Constructor Description
      NodeClassFilter()
      Creates a NodeClassFilter that accepts Html tags.
      NodeClassFilter​(java.lang.Class cls)
      Creates a NodeClassFilter that accepts tags of the given class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(Node node)
      Accept nodes that are assignable from the class provided in the constructor.
      java.lang.Class getMatchClass()
      Get the class to match.
      void setMatchClass​(java.lang.Class cls)
      Set the class to match.
      • Methods inherited from class java.lang.Object

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

      • mClass

        protected java.lang.Class mClass
        The class to match.
    • Constructor Detail

      • NodeClassFilter

        public NodeClassFilter()
        Creates a NodeClassFilter that accepts Html tags.
      • NodeClassFilter

        public NodeClassFilter​(java.lang.Class cls)
        Creates a NodeClassFilter that accepts tags of the given class.
        Parameters:
        cls - The class to match.
    • Method Detail

      • getMatchClass

        public java.lang.Class getMatchClass()
        Get the class to match.
        Returns:
        Returns the class.
      • setMatchClass

        public void setMatchClass​(java.lang.Class cls)
        Set the class to match.
        Parameters:
        cls - The node class to match.
      • accept

        public boolean accept​(Node node)
        Accept nodes that are assignable from the class provided in the constructor.
        Specified by:
        accept in interface NodeFilter
        Parameters:
        node - The node to check.
        Returns:
        true if the node is the right class, false otherwise.