use of org.gsweb.components.ui.InputfieldNoticeMsgLabel in project bamboobsc by billchen198318.
the class InputfieldNoticeMsgLabelTag method handler.
private InputfieldNoticeMsgLabel handler() {
InputfieldNoticeMsgLabel msgLabel = new InputfieldNoticeMsgLabel();
msgLabel.setId(this.id + Constants.INPUTFIELD_NOTICE_MESSAGE_LABEL);
msgLabel.setName(this.name);
msgLabel.setMessage(this.message);
return msgLabel;
}
use of org.gsweb.components.ui.InputfieldNoticeMsgLabel in project bamboobsc by billchen198318.
the class InputfieldNoticeMsgLabelTag method doEndTag.
@Override
public int doEndTag() throws JspException {
InputfieldNoticeMsgLabel msgLabel = this.handler();
try {
this.pageContext.getOut().write(msgLabel.getHtml());
this.pageContext.getOut().write(msgLabel.getScript());
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
msgLabel = null;
return 0;
}
Aggregations