TestObject.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.blogspot.howdoidothatinjava.sandbox;
 
import java.util.ArrayList;
import java.util.List;
 
public class TestObject {
 int a, b;
 String name;
  
 public TestObject(){
  a = 0;
  b = 0;
  name = "unnamed";
 }
  
 public TestObject(int a, int b){
  this.a = a;
  this.b = b;
  name = "unnamed";
 }
  
 public TestObject(int a, int b, String name){
     this.a = a;
     this.b = b;
     this.name = name;
 }
  
 public static List<TestObject> generateTestObjectList(){
  List<TestObject> out = new ArrayList<TestObject>();
  int[] aArray = new int[]{0, 1, 2, 3, 5, 8, 13, 21, 34, 45, 79, 124};
  int[] bArray = new int[]{1, 3, 6, 10, 15, 21, 28, 37, 47, 58, 70, 82};
   
  String[] names = new String[]{"Lefty", "Windsurfer", "Shortstop", "Viper", "Stingray", "Snoopy", "Archangel", "Rainmaker", "Boss Hog", "Terror", "Pitbull", "Axe"};
  for (int i = 0; i < aArray.length; i++){
   out.add(new TestObject(aArray[i], bArray[i], names[i]));
  }
  return out;
 }
  
 public int getA(){
  return a;
 }
  
 public int getB(){
  return b;
 }
  
 public String getName(){
     return name;
 }
  
 public void displayObject(){
     String tabs = getName().length() > 9 ? "\t" : "\t\t";
  System.out.println("TestObject (" + getName() + "):" + tabs + "a: " + getA() + "\tb: " + getB());
 }
  
}