use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setTextAreaWV.
public void setTextAreaWV(String value) {
EditBoxModel m = (EditBoxModel) getTextAreaWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method getFieldLinkedToCCAndCachedWM.
public WidgetModel getFieldLinkedToCCAndCachedWM() {
if (w_fieldLinkedToCCAndCached == null) {
w_fieldLinkedToCCAndCached = (EditBoxModel) getWidgetCache().getModel("fieldLinkedToCCAndCached");
if (w_fieldLinkedToCCAndCached == null) {
FieldMetaData meta = new StringFieldMetaData("SomeName1", "SomeToken1", Boolean.FALSE, null, null, FieldMetaData.LOWER_CASE);
w_fieldLinkedToCCAndCached = new EditBoxModel(meta);
getWidgetCache().addModel("fieldLinkedToCCAndCached", w_fieldLinkedToCCAndCached);
w_fieldLinkedToCCAndCached.setValue(getFieldLinkedToCCAndCached());
}
}
return w_fieldLinkedToCCAndCached;
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setFieldLinkedToCCAndCachedWV.
public void setFieldLinkedToCCAndCachedWV(String value) {
EditBoxModel m = (EditBoxModel) getFieldLinkedToCCAndCachedWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setDataTypeStringWV.
public void setDataTypeStringWV(String value) {
EditBoxModel m = (EditBoxModel) getDataTypeStringWM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method getDataTypeDateOnlyWM.
public WidgetModel getDataTypeDateOnlyWM() {
if (w_dataTypeDateOnly == null) {
w_dataTypeDateOnly = new EditBoxModel(new DateOnlyFieldMetaData());
w_dataTypeDateOnly.setValue(getDataTypeDateOnly());
}
return w_dataTypeDateOnly;
}
Aggregations