반응형
db에 저장하지도 않는데..
재기동할 때 객체를 다 로드해서 ArrayList observers 에 저장해 놓고
notify때 마다 update를 실행하겠다는 건가....
반응형
|
db에 저장하지도 않는데..
재기동할 때 객체를 다 로드해서 ArrayList observers 에 저장해 놓고
notify때 마다 update를 실행하겠다는 건가....
|
|
1. JFrame frame = new JFrame();
2. frame.getContentPane().add(button);
다른 대부분의 구성요소와 달리 JFrame에는 다른 위젯을 직접 추가할 수 없다
3. frame.setSize(300,300); frame.setVisible(true);
4. button.addActionListener(this);
5. public void actionPerformed(ActionEvent event){
button.setText("button clicked!!");
}
|
JTextField f = new JTextField(20);
|