use of limelight.ui.model.PropPanel 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.PropPanel 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.PropPanel 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));
}
use of limelight.ui.model.PropPanel in project limelight by slagyr.
the class JavaPlayerTest method setUp.
@Before
public void setUp() throws Exception {
FakeFileSystem fs = FakeFileSystem.installed();
JavaProductionTest.writeSamplePlayerTo(fs.outputStream("/testProduction/classes/SamplePlayer.class"));
samplePlayerClass = new PlayerClassLoader("/testProduction/classes").loadClass("SamplePlayer");
prop = new PropPanel(new FakePropProxy());
new FakeScene().add(prop);
}
Aggregations