MCPcopy Index your code
hub / github.com/benfry/processing4 / addRow

Method addRow

app/src/processing/app/tools/ThemeSelector.java:205–212  ·  view source on GitHub ↗
(Container axis, Component... components)

Source from the content-addressed store, hash-verified

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() {

Callers 1

initMethod · 0.95

Calls 1

addMethod · 0.45

Tested by

no test coverage detected