use of limelight.ui.model.FakeScene in project limelight by slagyr.
the class KeyboardFocusManagerTest method setUp.
public void setUp() throws Exception {
manager = new limelight.ui.KeyboardFocusManager();
manager.install();
panel = new MockInputPanel();
FakeScene root = new FakeScene();
root.add(panel);
}
use of limelight.ui.model.FakeScene in project limelight by slagyr.
the class CheckBoxTest method setUp.
@Before
public void setUp() throws Exception {
checkBox = new CheckBox();
propPanel = new PropPanel(new FakePropProxy());
new FakeScene().add(propPanel);
checkBox.install(new CastEvent(propPanel));
}
use of limelight.ui.model.FakeScene in project limelight by slagyr.
the class DropDownTest method setUp.
@Before
public void setUp() throws Exception {
dropDown = new DropDown();
propPanel = new PropPanel(new FakePropProxy());
new FakeScene().add(propPanel);
dropDown.install(new CastEvent(propPanel));
}
use of limelight.ui.model.FakeScene in project limelight by slagyr.
the class FormTest method setUp.
@Before
public void setUp() throws Exception {
form = new Form();
propPanel = new PropPanel(new FakePropProxy());
new FakeScene().add(propPanel);
form.install(new CastEvent(propPanel));
}
use of limelight.ui.model.FakeScene in project limelight by slagyr.
the class TextBoxTest method setUp.
@Before
public void setUp() throws Exception {
textBox = new TextBox();
propPanel = new PropPanel(new FakePropProxy());
new FakeScene().add(propPanel);
textBox.install(new CastEvent(propPanel));
}
Aggregations