| org.apache.tapestry.dom.MarkupModel
All known Subclasses: org.apache.tapestry.dom.DefaultMarkupModel,
MarkupModel | public interface MarkupModel (Code) | | Used by a the DOM to determine how to produce markup. Delegates details about converted entities
and some formatting details.
|
Method Summary | |
void | encode(String content, StringBuilder buffer) Encodes the characters into the buffer, converting control characters (such as '<') into
corresponding entities (such as <). | EndTagStyle | getEndTagStyle(String element) For a given element, determines how the end tag for the element should be rendered. |
encode | void encode(String content, StringBuilder buffer)(Code) | | Encodes the characters into the buffer, converting control characters (such as '<') into
corresponding entities (such as <).
Parameters: content - to be filtered Parameters: buffer - to recieve the filtered content |
getEndTagStyle | EndTagStyle getEndTagStyle(String element)(Code) | | For a given element, determines how the end tag for the element should be rendered.
|
|
|