일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- addClass
- ctrl+/
- is_check
- calc.plus
- Parent
- 파일질라설치
- Excel
- SUB함수
- 1521
- Math.ceil()
- 파일질라설치오류
- 증가값
- Math.floor()
- index %
- hide
- FileZilla설치
- selectoptions
- 파일질라다운로드
- Math.round()
- 소스트리인증실패
- Git
- slideUp
- toFixed()
- 주석이 먹히지 않을 때
- push오류
- selectedIndex
- FileZilla다운로드
- excel중복체크
- removeClass
- calc.minus
- Today
- Total
목록JAVA_SE/13_swing (4)
잡동사니에도 사랑을
package swing; import java.awt.Container; import java.awt.GridLayout; import javax.swing.ButtonGroup; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JRadioButton; class JButtonEx extends JFrame { private Icon icon1 = new ImageIcon("image/너부리.jpg"); private Icon icon2 = new ImageIcon("image/보노보노.png"); private Icon icon3 = new ImageIcon("image..
////////PersonDTO package swing; public class PersonDTO { private String id; private String name; private String pwd; private String phone; public PersonDTO(String id, String name, String pwd, String phone) { this.id = id; this.name = name; this.pwd = pwd; this.phone = phone; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return na..
package swing; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.table.AbstractTableModel; class JTableModel extends AbstractTableModel { // AbstractTableModel는 추상클래스 // Object[][] data = {{"Nari","마루치",new Integer(1234), "옆집친구"}, // {"One","오윤아",new Integer(1111),"예쁜이"}, // {"tow","오윤서",new Integer(2222),"귀염둥이"}, // {"three","아라치",new Integ..
package swing; import java.awt.FlowLayout; import java.util.Vector; import javax.swing.DefaultListModel; import javax.swing.JFrame; import javax.swing.JList; import javax.swing.JScrollPane; import javax.swing.ListSelectionModel; //JFrame은 BorderLayout(동서남북) public class JListEx extends JFrame { public JListEx() { super("JList Test"); // 부모 생성자 호출 setLayout(new FlowLayout()); // List가 따닥따닥 붙어서 나오..