Guest User

Untitled

a guest
Jan 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. class Ball
  2. {
  3.     private String name = "";
  4.     private String color = "";
  5.     private String hardness = "";
  6.     private int size = 0;
  7.  
  8.     public Ball(String _name, String _color, String _hardness, int _size)
  9.     {
  10.         this.name = _name;
  11.         this.color = _color;
  12.         this.hardness = _hardness;
  13.         this.size = _size;
  14.     }
  15.  
  16.     public String GetName() { return this.name; }
  17.     public void SetName(String value) { this.name = value; }
  18. }
Add Comment
Please, Sign In to add comment