Can I use JGoodies FormLayout to change the alignment of a component after installing it?
eg,
CellConstraints cc = new CellCosntraints(); panel.add(component,cc.xy(1,1,CellConstraints.DEFAULT,CellConstraints.FILL));
If I want to change component to have a DEFAULT string constraint instead of FILL, is there a way to change it now that it has been installed without removing and re-adding the component?
source share