일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Struts
- WebLogic
- ibsheet
- GPS
- oracle
- MFC
- jQuery
- phonegap
- swingx
- tomcat
- 선택적조인
- rowspan
- PLSQL
- iBATIS
- JDOM
- Google Map
- sencha touch
- Ajax
- JSON
- MySQL
- Eclipse
- Android
- node.js
- dock
- 전자정부프레임워크
- appspresso
- Spring
- 가우스
- PHP
- jsr 296
Archives
- Today
- Total
Where The Streets Have No Name
docking frames 예제(3) 본문
private void initStackDockStation() {
DockController controller = new DockController();
StackDockStation station = new StackDockStation();
station.setTitleText("Stack");
station.drop(new DefaultDockable("one"));
station.drop(new DefaultDockable("two"));
controller.add(station);
getFrame().add(station.getComponent());
System.out.println(""+station.getDockableCount());
for(int inx = 0;inx < station.getDockableCount();inx++){
System.out.println(""+station.getDockable(inx).getTitleText());
}
}