Examples of UiEventButtonBaseTag


Examples of org.araneaframework.jsp.tag.presentation.UiEventButtonBaseTag

   
    return SKIP_BODY;   
  }
 
  protected void writeEventButtonTag(String eventId, String eventParam, boolean disabled, String labelId) throws JspException {
    UiEventButtonBaseTag buttonTag = new UiStdEventButtonTag();
    registerSubtag(buttonTag);
    buttonTag.setEventId(eventId);
    if (eventParam != null) {
      buttonTag.setEventParam(eventParam);     
    }
    if (disabled == true) {
      buttonTag.setDisabled(Boolean.toString(disabled));     
    }
    if (labelId != null) {
      buttonTag.setLabelId(labelId);     
    }   
    executeSubtag(buttonTag);
    unregisterSubtag(buttonTag);   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.