본문 바로가기

Language

게시글에 소스코드 이쁘게 넣기 colorscripter.com

http://colorscripter.com/



위사이트에 소스코드를 입력해 클립보드 복사로 가져오면됨
























복사로 가져온 소스

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
 
 
        prev.setActionCommand("PREV");
 
        new ActionListener() {
 
            @Override
            public void actionPerformed(ActionEvent e) {
                EmpTableModel tmodel = (EmpTableModel) jtable.getModel();
                EmpDAO dao = new EmpDAO();
                Object comp = e.getSource();
                if (!(comp instanceof JButton))
                    return;
                JButton btn = (JButton) comp;
                switch (btn.getActionCommand()) {
                case "PREV":
                case "NEXT":
                    btn.setEnabled(false);
 
                }
 
            }
        };
 

 


cs