Nass_accurcies.java [src/java/methods/objects] Revision: default Date:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package methods.objects;
/**
*
* @author hokipka
*/
public class Nass_accurcies {
private final String state;
private final double[] accu;
private final int[] years;
public Nass_accurcies(String state, double[] accu, int[] years) {
this.state = state;
this.accu = accu;
this.years = years;
}
public String getstate() {
return this.state;
}
public double[] getaccus() {
return this.accu;
}
public int[] getyears() {
return this.years;
}
// static {
// ArrayList<Nass_accurcies_object> list = new ArrayList<Nass_accurcies_object>();
// list.add(new Nass_accurcies("CO", new double[]{0.9, 1.0},new int[]{2008, 2009}));
// }
}