(Container axis, Component... components)
| 203 | static final int ROW_V_GAP = 0; |
| 204 | |
| 205 | static private void addRow(Container axis, Component... components) { |
| 206 | JPanel row = new JPanel(new FlowLayout(FlowLayout.LEFT, ROW_H_GAP, ROW_V_GAP)); |
| 207 | row.setOpaque(false); |
| 208 | for (Component comp : components) { |
| 209 | row.add(comp); |
| 210 | } |
| 211 | axis.add(row); |
| 212 | } |
| 213 | |
| 214 | |
| 215 | public void run() { |