Advertisement
Guest User

Untitled

a guest
Jan 14th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package txteditor;
  2.  
  3. import java.awt.event.ActionEvent;
  4. import java.awt.event.ActionListener;
  5.  
  6. public class Actions{
  7.     {
  8.     new Layout();
  9.  
  10.    
  11.     Layout.bold.addActionListener(new ActionListener() {
  12.         public void actionPerformed(ActionEvent e) {
  13.                 System.out.println("DOJPA");
  14.                 Edit.Bold();
  15.  
  16.                
  17.         }
  18.        
  19. });
  20.    
  21.    
  22. }  
  23.    
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement