blob: c96d542a4cdb0c1ed2c820c4626a4857852bceb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.vaadin.tests.layouts.layouttester;
import com.vaadin.ui.Layout;
public abstract class AbstractLayoutTests {
protected static final String FOLDER_16_PNG = "../icons/runo/16/folder.png";
protected static final String CALENDAR_32_PNG = "../runo/icons/32/calendar.png";
protected static final String LOCK_16_PNG = "../runo/icons/16/lock.png";
protected static final String GLOBE_16_PNG = "../runo/icons/16/globe.png";
abstract protected Layout getCaptionsTests();
abstract protected Layout getIconsTests();
abstract protected Layout getRequiredErrorIndicatorsTests();
abstract protected Layout getAlignmentTests();
abstract protected Layout getExpandRatiosTests();
abstract protected Layout getMarginSpacingTests();
abstract protected Layout getComponentAddReplaceMoveTests();
abstract protected Layout getComponentSizingTests();
abstract protected Layout getLayoutSizingTests();
}
|