Beispiel #1
0
 /**
  * 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;
 }
Beispiel #2
0
 /**
  * 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;
 }