Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 12 → Rev 13

/trunk/src/org/tela_botanica/client/InventoryItem.java
10,9 → 10,10
private String date=null;
private String complementlocation=null;
private String comment=null;
private String ordre=null;
 
public InventoryItem(String name,String nomenclaturalNumber, String location, String location_id, String date, String complementlocation, String comment) {
public InventoryItem(String name,String nomenclaturalNumber, String location, String location_id, String date, String complementlocation, String comment,String ordre) {
 
this.name=name;
31,6 → 32,7
this.date=date;
this.complementlocation=complementlocation;
this.comment=comment;
this.ordre=ordre;
}
 
68,6 → 70,10
public String getDate() {
return date;
}
 
 
public String getOrdre() {
return ordre;
}
}