Advertisement
daniel_farias

java_12_refactor

Jul 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Employee {
  2.     private int type;
  3.     public static final int ENGINEER = 0;
  4.     public static final int SALESMAN = 1;
  5.     public static final int MANAGER = 2;
  6.    
  7.     public Employee (int type) {
  8.         this.type = type;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement