use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setDataTypeDateOnlyWV.
public void setDataTypeDateOnlyWV(String value) {
EditBoxModel m = (EditBoxModel) getDataTypeDateOnlyWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setDataTypeDateTimeWV.
public void setDataTypeDateTimeWV(String value) {
EditBoxModel m = (EditBoxModel) getDataTypeDateTimeWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setDataTypeDecimalWV.
public void setDataTypeDecimalWV(String value) {
EditBoxModel m = (EditBoxModel) getDataTypeDecimalWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method getTextAreaWM.
public WidgetModel getTextAreaWM() {
if (w_textArea == null) {
w_textArea = new EditBoxModel();
w_textArea.setValue(getTextArea());
}
return w_textArea;
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method getFieldWithKeyBoardWM.
public WidgetModel getFieldWithKeyBoardWM() {
if (w_fieldWithKeyBoard == null) {
w_fieldWithKeyBoard = new EditBoxModel();
w_fieldWithKeyBoard.setValue(getFieldWithKeyBoard());
}
return w_fieldWithKeyBoard;
}
Aggregations