22 lines
308 B
Java
22 lines
308 B
Java
package general_utility;
|
|
|
|
/**
|
|
* Created with xgiovio.macbookair.
|
|
* User: xgiovio
|
|
* Date: 10/03/14
|
|
* Time: 16:41
|
|
*/
|
|
public class test_object {
|
|
|
|
public test_object (int in_number){
|
|
number = in_number;
|
|
}
|
|
|
|
public int get_data (){
|
|
return number;
|
|
}
|
|
|
|
private int number;
|
|
|
|
}
|