Add XHTMLText.appendCloseLineItemTag()

This commit is contained in:
vito-c 2015-01-04 18:27:42 -08:00 committed by Florian Schmaus
parent f6144c553c
commit b77d61527c
1 changed files with 9 additions and 0 deletions

View File

@ -239,6 +239,15 @@ public class XHTMLText {
return this;
}
/**
* Appends a tag that indicates that a line item section ends.
*
*/
public XHTMLText appendCloseLineItemTag() {
text.closeElement(LI);
return this;
}
/**
* Appends a tag that creates an ordered list. "Ordered" means that the order of the items
* in the list is important. To show this, browsers automatically number the list.