Uses of Class
au.id.jericho.lib.html.TagType

Uses of TagType in au.id.jericho.lib.html
 

Subclasses of TagType in au.id.jericho.lib.html
 class EndTagType
          Defines the syntax for an end tag type.
 class EndTagTypeGenericImplementation
          Provides a generic implementation of the abstract EndTagType class based on the most common end tag behaviour.
 class StartTagType
          Defines the syntax for a start tag type.
 class StartTagTypeGenericImplementation
          Provides a generic implementation of the abstract StartTagType class based on the most common start tag behaviour.
 

Methods in au.id.jericho.lib.html that return TagType
abstract  TagType Tag.getTagType()
          Returns the type of this tag.
 TagType StartTag.getTagType()
           
 TagType EndTag.getTagType()
           
static TagType[] TagType.getTagTypesIgnoringEnclosedMarkup()
          Returns an array of all the tag types inside which the parser ignores all non-server tags in parse on demand mode.
 

Methods in au.id.jericho.lib.html with parameters of type TagType
static boolean PHPTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
static boolean MicrosoftTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
static boolean MasonTagTypes.defines(TagType tagType)
          Indicates whether the specified tag type is defined in this class.
 java.util.List Segment.findAllTags(TagType tagType)
          Returns a list of all Tag objects of the specified type that are enclosed by this segment.
 Tag Source.findEnclosingTag(int pos, TagType tagType)
          Returns the Tag of the specified type that encloses the specified position in the source document.
 Tag Source.findNextTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately following the specified position in the source document.
 Tag Source.findPreviousTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately preceding (or enclosing) the specified position in the source document.
static boolean MasonTagTypes.isParsedByMason(TagType tagType)
          Indicates whether the specified tag type is recognised by a Mason parser.
static boolean PHPTagTypes.isParsedByPHP(TagType tagType)
          Indicates whether the specified tag type is recognised by a PHP parser.
static void TagType.setTagTypesIgnoringEnclosedMarkup(TagType[] tagTypes)
          Sets the tag types inside which the parser ignores all non-server tags.