use of limelight.ui.MockGraphics in project limelight by slagyr.
the class BorderPainterTest method setUp.
public void setUp() throws Exception {
panel = new MockProp();
style = panel.getStyle();
border = new Box(5, 5, 100, 100);
panel.boxInsideMargins = border;
painter = BorderPainter.instance;
graphics = new MockGraphics();
}
use of limelight.ui.MockGraphics in project limelight by slagyr.
the class RepeatYFillStrategyValueTest method setUp.
public void setUp() throws Exception {
attribute = new RepeatYFillStrategyValue();
graphics = new MockGraphics();
clip = new Box(0, 0, 60, 60);
graphics.clip = clip;
}
use of limelight.ui.MockGraphics in project limelight by slagyr.
the class ScaleFillStrategyValueTest method setUp.
public void setUp() throws Exception {
attribute = new ScaleFillStrategyValue();
graphics = new MockGraphics();
clip = new Box(0, 0, 60, 60);
graphics.clip = clip;
}
use of limelight.ui.MockGraphics in project limelight by slagyr.
the class ScaleXFillStrategyValueTest method setUp.
public void setUp() throws Exception {
attribute = new ScaleXFillStrategyValue();
graphics = new MockGraphics();
clip = new Box(0, 0, 60, 60);
graphics.clip = clip;
}
use of limelight.ui.MockGraphics in project limelight by slagyr.
the class PenTest method setUp.
public void setUp() throws Exception {
graphics = new MockGraphics();
pen = new Pen(graphics);
}
Aggregations