/** * 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; }
/** * 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; }