Advertisement
the_alator

Untitled

May 27th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. JFrame frame = new JFrame() {{
  2. add(new JPanel() {{
  3. add(new JLabel("Хабрахабр?") {{
  4. setBackground(Color.BLACK);
  5. setForeground(Color.WHITE);
  6. }});
  7.  
  8. add(new JButton("Торт!") {{
  9. addActionListener(new ActionListener() {
  10. public void actionPerformed(ActionEvent event) {
  11. System.out.println("Хабрахабр - торт!");
  12. }
  13. });
  14. }});
  15. }});
  16. }};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement