Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 12 → Rev 13

/trunk/src/org/tela_botanica/client/NameAssistant.java
65,7 → 65,11
}
 
 
public void setText(String str) {
autoCompletebox.setText(str);
}
 
 
public String getText() {
return autoCompletebox.getText();
}
75,6 → 79,10
return autoCompletebox.getValue();
}
 
public void setValue(String value) {
autoCompletebox.setValue(value);
}
 
}