Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class Protsess {
  2. private String name;
  3. private double AT;
  4. private double BT;
  5.  
  6. public Protsess(String name, int AT, int BT) {
  7. super();
  8. this.name = name;
  9. this.AT = AT;
  10. this.BT = BT;
  11. }
  12.  
  13. public double getAT(){
  14. return AT;
  15. }
  16. public double getBT(){
  17. return BT;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement