TableMuaggatt.java [src/soils/db/tables] Revision: default Date:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package soils.db.tables;
/**
*
* @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
*/
public class TableMuaggatt extends Table {
public static final String BROCKDEPMIN = "brockdepmin";
static final String[] BROCKDEPMIN_DATA = {BROCKDEPMIN, "The distance from the soil surface to the top of a paralithic or lithic bedrock layer, expressed as a shallowest depth of components whose composition in the map unit is equal to or exceeds 15%"};
public TableMuaggatt() {
addDataColumn(BROCKDEPMIN, new TableColumnInteger(BROCKDEPMIN_DATA));
}
public int brockdepmin() {
return ((int) columns.get(BROCKDEPMIN).getValue());
}
public void brockdepmin(int value) {
columns.get(BROCKDEPMIN).setValue(value);
}
}