| Modifier and Type | Class and Description |
|---|---|
class |
StartTagTypeGenericImplementation
Provides a generic implementation of the abstract
StartTagType class based on the most common start tag behaviour. |
| Modifier and Type | Field and Description |
|---|---|
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 |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_HIDDEN_ENDIF
|
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_HIDDEN_IF
|
static StartTagType |
MicrosoftTagTypes.DOWNLEVEL_REVEALED_CONDITIONAL_COMMENT
Deprecated.
|
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_REVEALED_ENDIF
|
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_REVEALED_IF
|
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_REVEALED_VALIDATING_ENDIF
The tag type given to a validating downlevel-revealed conditional comment
endif tag
(<!--<![endif]-->). |
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_REVEALED_VALIDATING_IF
The tag type given to a validating downlevel-revealed conditional comment
if tag
(<!--[if ... ]><!-->). |
static StartTagType |
MicrosoftConditionalCommentTagTypes.DOWNLEVEL_REVEALED_VALIDATING_SIMPLIFIED_IF
The tag type given to a validating simplified downlevel-revealed conditional comment
if tag
(<!--[if ... ]>-->). |
static StartTagType |
StartTagType.MARKUP_DECLARATION
The tag type given to a markup declaration
(
<!ELEMENT ... > | <!ATTLIST ... > | <!ENTITY ... > | <!NOTATION ... >). |
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.SERVER_COMMON_COMMENT
The tag type given to a common server comment tag
(
<%-- ... --%>). |
static StartTagType |
StartTagType.SERVER_COMMON_ESCAPED
The tag type given to an escaped common server tag
(
<\% ... %>). |
static StartTagType |
StartTagType.UNREGISTERED
|
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 ... ?>). |
| Modifier and Type | Method and Description |
|---|---|
StartTagType |
EndTagType.getCorrespondingStartTagType()
|
StartTagType |
StartTag.getStartTagType()
Returns the type of this start tag.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Element> |
Segment.getAllElements(StartTagType startTagType)
|
java.util.List<StartTag> |
Segment.getAllStartTags(StartTagType startTagType)
|
StartTag |
Segment.getFirstStartTag(StartTagType startTagType)
|
StartTag |
Source.getNextStartTag(int pos,
StartTagType startTagType)
|
StartTag |
Source.getNextStartTag(int pos,
java.lang.String name,
StartTagType startTagType)
|
StartTag |
Source.getPreviousStartTag(int pos,
StartTagType startTagType)
|
StartTag |
Source.getPreviousStartTag(int pos,
java.lang.String name,
StartTagType startTagType)
|