示例#1
0
 /**
  * The spellcheck attribute is an enumerated attribute whose keywords are the empty string, true
  * and false. The empty string and the true keyword map to the true state. The false keyword maps
  * to the false state. In addition, there is a third state, the default state, which is the
  * missing value default (and the invalid value default).
  */
 @Override
 public DHGroup setHtmlSpellCheck(final boolean spellCheck) {
   super.setHtmlSpellCheck(spellCheck);
   return this;
 }
示例#2
0
文件: DKbd.java 项目: vjetteam/vjet
 /**
  * The spellcheck attribute is an enumerated attribute whose keywords are the empty string, true
  * and false. The empty string and the true keyword map to the true state. The false keyword maps
  * to the false state. In addition, there is a third state, the default state, which is the
  * missing value default (and the invalid value default).
  */
 @Override
 public DKbd setHtmlSpellCheck(final String spellCheck) {
   super.setHtmlSpellCheck(spellCheck);
   return this;
 }