Exemplo n.º 1
0
 /**
  * THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.
  *
  * @param type The new type
  */
 public final void setType(final TagType type) {
   if (type != xmlTag.getType()) {
     xmlTag.setType(type);
     setModified(true);
   }
 }
Exemplo n.º 2
0
 /** @return the tag type (OPEN, CLOSE or OPEN_CLOSE). */
 public final TagType getType() {
   return xmlTag.getType();
 }