Advertisement
pastetumlum

Untitled

Jul 14th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class CustomButton extends JButton {
  2.     private String btnID;
  3.  
  4.     public CustomButton(String id, String label) {
  5.         this.btnID = id;
  6.         setText(label);
  7.         setFocusable(false);
  8.     }
  9.  
  10.     public String getBtnID() {
  11.         return btnID;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement