Java Reference
In-Depth Information
public String getId(){
return id;
}
public String getMake(){
return make;
}
public String getZip(){
return zip;
}
public String getModel(){
return model;
}
public String getColor(){
return color;
}
public String getBody(){
return body;
}
public String getEngine(){
return engine;
}
public String getTransmission(){
return transmission;
}
public int getPrice(){
return price;
}
public int getYear(){
return year;
}
public int getIndex(){
return index;
}
public int getRowCount(){
return rowCount;
}
public String getPage(){
return ""+(index/pageSize+1)+" of "+(rowCount/pageSize+1);
}
public boolean pageForward(){
boolean validRow = false;
if(index<0||index+pageSize>rowCount){
index=0;
Search WWH ::




Custom Search