This commit is contained in:
Keith Donald
2008-11-12 17:18:49 +00:00
parent bdc205f0a6
commit db81d309d1
3 changed files with 44 additions and 9 deletions

View File

@@ -44,9 +44,9 @@ public interface ValidationContext {
public String getUserEvent();
/**
* Obtain the value entered by the current user in a field. This value can then be validated.
* @param field the name of the field
* @return the value the user entered in the field
* Obtain the value entered by the current user in the UI field bound to the property provided.
* @param property the name of a bound property
* @return the value the user entered in the field bound to the property
*/
public Object getUserValue(String field);
public Object getUserValue(String property);
}