|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MarkupModel
Used by a the DOM to determine how to produce markup. Delegates details about converted entities and some formatting details. This exists to handle the differences between traditional HTML output (which is SGML based, meaning there can be elements that are valid without a close tag) and "modern" XML, such as XHTML. Generally speaking, for XHTML it is vital that a !DOCTYPE be included in the rendered response, or the browser will be unable to display the result properly.
Method Summary | |
---|---|
String |
encode(String content)
Encodes the characters, converting control characters (such as '<') into corresponding entities (such as <). |
void |
encodeQuoted(String content,
StringBuilder buffer)
Encodes the characters into the buffer for use in a quoted value (that is, an attribute value), converting control characters (such as '<') into corresponding entities (such as <). |
char |
getAttributeQuote()
What character is used when generating quotes around attribute values? This will be either a single or double quote. |
EndTagStyle |
getEndTagStyle(String element)
For a given element, determines how the end tag for the element should be rendered. |
boolean |
isXML()
Returns true if the document markup is XML, which is used to determine the need for an XML declaration at the start of the document, and whether CDATA sections are supported. |
Method Detail |
---|
String encode(String content)
content
- to be filtered
void encodeQuoted(String content, StringBuilder buffer)
content
- to be filteredbuffer
- to receive the filtered contentEndTagStyle getEndTagStyle(String element)
boolean isXML()
char getAttributeQuote()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |