This method of the Document class determines whether to allow short end tags.
XML allows you to end a tag with a "/>". This signals that the element has no contents, and does not have an end tag. For example,
<title/>
is equivalent to
<title></title>
setShortEndTags turns this feature on or off.
public void setShortEndTags(boolean yes);
yes | Enables short end tags. |