|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of StartTagType in au.id.jericho.lib.html |
---|
Subclasses of StartTagType in au.id.jericho.lib.html | |
---|---|
class |
StartTagTypeGenericImplementation
Provides a generic implementation of the abstract StartTagType class based on the most common start tag behaviour. |
Fields in au.id.jericho.lib.html declared as StartTagType | |
---|---|
static StartTagType |
StartTagType.CDATA_SECTION
The tag type given to a CDATA section ( <![CDATA[ ... ]]> ). |
static StartTagType |
StartTagType.COMMENT
The tag type given to an HTML comment ( <!-- ... --> ). |
static StartTagType |
StartTagType.DOCTYPE_DECLARATION
The tag type given to a document type declaration ( <!DOCTYPE ... > ). |
static StartTagType |
StartTagType.MARKUP_DECLARATION
The tag type given to a markup declaration ( <! ... > ). |
static StartTagType |
MasonTagTypes.MASON_COMPONENT_CALL
The tag type given to a Mason component call ( <& ... &> ). |
static StartTagType |
MasonTagTypes.MASON_COMPONENT_CALLED_WITH_CONTENT
The tag type given to the start tag of a Mason component called with content ( <&| ... &> ... </&> ). |
static StartTagType |
MasonTagTypes.MASON_NAMED_BLOCK
The tag type given to the start tag of a Mason named block ( <%name ... > ... </%name> ). |
static StartTagType |
StartTagType.NORMAL
The tag type given to a normal HTML or XML start tag ( < name ... > ). |
static StartTagType |
PHPTagTypes.PHP_SCRIPT
The tag type given to a script-style PHP start tag ( <script language="php"> ... </script> ). |
static StartTagType |
PHPTagTypes.PHP_SHORT
The tag type given to a short-form PHP tag ( <? ... ?> ). |
static StartTagType |
PHPTagTypes.PHP_STANDARD
The tag type given to a standard PHP tag ( <?php ... ?> ). |
static StartTagType |
StartTagType.SERVER_COMMON
The tag type given to a common server tag ( <% ... %> ). |
static StartTagType |
StartTagType.UNREGISTERED
The tag type given to an unregistered start tag ( < ... > ). |
static StartTagType |
StartTagType.XML_DECLARATION
The tag type given to an XML declaration ( <?xml ... ?> ). |
static StartTagType |
StartTagType.XML_PROCESSING_INSTRUCTION
The tag type given to an XML processing instruction ( <? PITarget ... ?> ). |
Methods in au.id.jericho.lib.html that return StartTagType | |
---|---|
StartTagType |
EndTagType.getCorrespondingStartTagType()
Returns the type of start tag that is usually paired with an end tag of this type to form an Element . |
StartTagType |
StartTag.getStartTagType()
Returns the type of this start tag. |
Methods in au.id.jericho.lib.html with parameters of type StartTagType | |
---|---|
java.util.List |
Segment.findAllElements(StartTagType startTagType)
Returns a list of all Element objects with start tags of the specified type that are enclosed by this segment. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |