Output an body-content tag startTag(out, tag); out.println(content); endTag(out, tag);
startTag(out, tag); out.println(content); endTag(out, tag);
Output an empty tag startTag(out, tag); endTag(out, tag);
startTag(out, tag); endTag(out, tag);
Output an end tag out.print( new StringBuffer(LB).append(END).append(tag).append(RB).toString());
out.print( new StringBuffer(LB).append(END).append(tag).append(RB).toString());
Output a start tag out.print( new StringBuffer(LB).append(tag).append(RB).toString());
out.print( new StringBuffer(LB).append(tag).append(RB).toString());