コード例 #1
0
ファイル: DHGroup.java プロジェクト: eclipse/vjet.all
 /**
  * The draggable attribute is an enumerated attribute. It has three states. The first state is
  * true and it has the keyword true. The second state is false and it has the keyword false. The
  * third state is auto; it has no keywords but it is the missing value default.
  */
 @Override
 public DHGroup setHtmlDraggable(final boolean draggable) { // true, false
   super.setHtmlDraggable(draggable);
   return this;
 }
コード例 #2
0
ファイル: DHGroup.java プロジェクト: eclipse/vjet.all
 /**
  * The draggable attribute is an enumerated attribute. It has three states. The first state is
  * true and it has the keyword true. The second state is false and it has the keyword false. The
  * third state is auto; it has no keywords but it is the missing value default.
  */
 @Override
 public DHGroup setHtmlDraggable(final String draggable) { // true, false, auto
   super.setHtmlDraggable(draggable);
   return this;
 }