use of limelight.ui.model.inputs.TestableInputPanel in project limelight by slagyr.
the class StageKeyListenerTest method buildInputTree.
private void buildInputTree() {
MockParentPanel parent = new MockParentPanel();
panel.add(parent);
input = new TestableInputPanel();
parent.add(input);
input2 = new TestableInputPanel();
input3 = new TestableInputPanel();
panel.add(input2);
panel.add(input3);
}
Aggregations