コード例 #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;
 }