panel.add(childPanel, cc.xy(1,5));
return panel;
}
private ActionCommand createBuildBindingCommand() {
ActionCommand actionCommand = new ActionCommand("buildBinding"){
protected void doExecuteCommand() {
String pattern = (String)getValue("regExp");
boolean upperCaseOnly = (Boolean) getValue("convertToUppercase");
CellConstraints cc = new CellConstraints();
ChildForm form = new ChildForm(pattern, upperCaseOnly);