일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- appspresso
- sencha touch
- rowspan
- PLSQL
- Google Map
- node.js
- swingx
- phonegap
- ibsheet
- 선택적조인
- jsr 296
- iBATIS
- 전자정부프레임워크
- oracle
- GPS
- Eclipse
- MySQL
- Struts
- PHP
- JSON
- dock
- WebLogic
- JDOM
- Ajax
- Spring
- MFC
- tomcat
- 가우스
- jQuery
- Android
- Today
- Total
목록swingx (4)
Where The Streets Have No Name
DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode(new TableRowData("CF", "", "", "", true)); DefaultMutableTreeNode incomeNode = new DefaultMutableTreeNode(new TableRowData("Income", "25000", "5000", "300000", true)); incomeNode.add(new DefaultMutableTreeNode(new TableRowData("Salary1", "250001", "50001", "3000001", false))); incomeNode.add(new DefaultMutableTreeNode(new TableRowData(..
import org.jdesktop.swingx.auth.LoginService; public class DummyLoginService extends LoginService { @Override public boolean authenticate(String arg0, char[] arg1, String arg2) throws Exception { //throw new UnsupportedOperationException("Not supported yet."); System.out.println("name : " + arg0); StringBuilder passwd = new StringBuilder(); for (char c : arg1) { passwd.append(c); } System.out.pr..
private void jButton1MouseClicked(java.awt.event.MouseEvent evt) { try { int i = 100 / 0; } catch (Exception e) { JXErrorPane.showDialog(this, new ErrorInfo("Error", e.getMessage(), null, null, e, null, null)); } }
http://codery.blogspot.com/2008/05/installing-swingx-in-netbeans-61.html SwingX adds some really nice UI and other improvements to Swing. It's sponsored by Sun, and may be released in a future version of Java, but appears stable enough to use in projects now. There's a tutorial on how to set it up, but it's missing some important content, so here's how I did it: 1. Download and unzip from http:/..