示例#1
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * The id attribute represents its element's unique identifier. The value must be unique in the
  * element's home subtree and must contain at least one character. The value must not contain any
  * space characters
  */
 @Override
 public DCol setHtmlId(CssIdConstant id) {
   super.setHtmlId(id);
   return this;
 }
示例#2
0
文件: DCol.java 项目: vjetteam/vjet
 /**
  * The id attribute represents its element's unique identifier. The value must be unique in the
  * element's home subtree and must contain at least one character. The value must not contain any
  * space characters
  */
 @Override
 public DCol setHtmlId(String id) {
   super.setHtmlId(id);
   return this;
 }