일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- GPS
- Struts
- dock
- JSON
- Ajax
- node.js
- Eclipse
- sencha touch
- swingx
- rowspan
- MySQL
- WebLogic
- 가우스
- jQuery
- 선택적조인
- Spring
- phonegap
- MFC
- PLSQL
- 전자정부프레임워크
- PHP
- Google Map
- tomcat
- oracle
- ibsheet
- JDOM
- appspresso
- jsr 296
- iBATIS
- Android
Archives
- Today
- Total
Where The Streets Have No Name
docking frames 예제(2) 본문
private void initDockController() {
DockController controller = new DockController();
SplitDockStation station = new SplitDockStation();
controller.add(station);
SplitDockGrid grid = new SplitDockGrid();
grid.addDockable(0, 0, 2, 1, new DefaultDockable("North"));
grid.addDockable(0, 1, 1, 1, new DefaultDockable("South West"));
grid.addDockable(1, 1, 1, 1, new DefaultDockable("South East"));
station.dropTree(grid.toTree());
getFrame().add(station.getComponent());
controller.setTheme(new EclipseTheme());
controller.getProperties().set(EclipseTheme.TAB_PAINTER, RectGradientPainter.FACTORY);
}