Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class DataHolder {

private int value1;


private double value2;
private String value3;
private boolean value4;

public int getValue1() {


return value1;
}

public void setValue1(int value1) {


this.value1 = value1;
}

public double getValue2() {


return value2;
}

public void setValue2(double value2) {


this.value2 = value2;
}

public String getValue3() {


return value3;
}

public void setValue3(String value3) {


this.value3 = value3;
}

public boolean getValue4() {


return value4;
}

public void setValue4(boolean value4) {


this.value4 = value4;
}
}

You might also like