1 2 3 4 5 6 7 8
| mSystemPanel.add(mSystemCronLab, new GBC(0, 0).setInsets(1).setAnchor(GBC.WEST).setWeight(80, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemCronState, new GBC(1, 0).setInsets(1).setAnchor(GBC.WEST).setWeight(20, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemWebLab, new GBC(0, 1).setInsets(1).setAnchor(GBC.WEST).setWeight(80, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemWebState, new GBC(1, 1).setInsets(1).setAnchor(GBC.WEST).setWeight(20, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemLogLab, new GBC(0, 2).setInsets(1).setAnchor(GBC.WEST).setWeight(80, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemLogState, new GBC(1, 2).setInsets(1).setAnchor(GBC.WEST).setWeight(20, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemKernelLab, new GBC(0, 3).setInsets(1).setAnchor(GBC.WEST).setWeight(80, 1).setFill(GBC.HORIZONTAL));
mSystemPanel.add(mSystemKernelState, new GBC(1, 3).setInsets(1).setAnchor(GBC.WEST).setWeight(20, 1).setFill(GBC.HORIZONTAL)); |
Partager