일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Ajax
- JSON
- rowspan
- WebLogic
- oracle
- 가우스
- dock
- swingx
- Struts
- PLSQL
- tomcat
- PHP
- Android
- sencha touch
- JDOM
- Google Map
- jsr 296
- node.js
- 선택적조인
- appspresso
- MFC
- phonegap
- GPS
- 전자정부프레임워크
- MySQL
- jQuery
- Spring
- Eclipse
- ibsheet
- iBATIS
- Today
- Total
목록dock (4)
Where The Streets Have No Name
private void initCControl() { CControl control = new CControl(getFrame()); getFrame().add(control.getContentArea()); CGrid grid = new CGrid(control); grid.add(0, 0, 1, 1, createDockable2("Red", Color.RED)); grid.add(0, 1, 1, 1, createDockable2("Green", Color.GREEN)); grid.add(1, 0, 1, 1, createDockable2("Blue", Color.BLUE)); grid.add(1, 1, 1, 1, createDockable2("Yellow", Color.YELLOW)); control...
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 < statio..
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")); stat..
private void initDockFrontend() { DockFrontend frontend = new DockFrontend(getFrame()); SplitDockStation station = new SplitDockStation(); getFrame().add(station.getComponent()); frontend.addRoot("station", station); SplitDockGrid grid = new SplitDockGrid(); grid.addDockable(0, 0, 1, 1, createDockable("Red", Color.RED)); grid.addDockable(0, 1, 1, 1, createDockable("Green", Color.GREEN)); grid.ad..