303132333435363738
} public void setValue(String name, String value) { Component c = this.getComponent(name); if (c != null) { XField xfield = (XField) c; xfield.setValue(value); } }
38394041424344454647
} public String getValue(String name) { Component c = this.getComponent(name); if (c != null) { XField xfield = (XField) c; return xfield.getValue(); } return null; }