/** * 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 DCol setHtmlDraggable(final boolean draggable) { // true, false super.setHtmlDraggable(draggable); return this; }
/** * 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 DCol setHtmlDraggable(final String draggable) { // true, false, auto super.setHtmlDraggable(draggable); return this; }