public void setCompact(boolean compact) { DOMObjectHelper.setBooleanMember(obj, HTMLConstants.ATTR_COMPACT, compact); }
public void setSpan(int span) { DOMObjectHelper.setIntMember(obj, HTMLConstants.ATTR_SPAN, span); }
/** * Reduce spacing between list items. See the compact attribute definition in HTML 4.0. This * attribute is deprecated in HTML 4.0. */ public boolean getCompact() { return DOMObjectHelper.getBooleanMember(obj, HTMLConstants.ATTR_COMPACT); }
/** * Indicates the number of columns in a group or affected by a grouping. See the span attribute * definition in HTML 4.0. */ public int getSpan() { return DOMObjectHelper.getIntMember(obj, HTMLConstants.ATTR_SPAN); }