1 package sharin.doc.builder.xhtml1; 2 3 public class BrElem extends GenericCoreElem<BrElem> { 4 5 public BrElem(Object... nodes) { 6 super("br", nodes); 7 } 8 9 public BrElem clear(Object value) { 10 return attr("clear", value); 11 } 12 13 public BrElem clearAll() { 14 return clear("all"); 15 } 16 17 public BrElem clearLeft() { 18 return clear("left"); 19 } 20 21 public BrElem clearNone() { 22 return clear("none"); 23 } 24 25 public BrElem clearRight() { 26 return clear("right"); 27 } 28 }