示例#1
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * 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;
 }
示例#2
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * 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;
 }