/** * This attribute is a boolean attribute. When specified on an element, it indicates that the * element is not yet, or is no longer, relevant. User agents should not render elements that have * the hidden attribute specified. */ @Override public DCol setHtmlHidden(final boolean hidden) { super.setHtmlHidden(hidden); return this; }
/** * This attribute is a boolean attribute. When specified on an element, it indicates that the * element is not yet, or is no longer, relevant. User agents should not render elements that have * the hidden attribute specified. */ @Override public DCol setHtmlHidden(final String hidden) { super.setHtmlHidden(hidden); return this; }