public Object get(String name)
{
return ((FieldValue) ht.get(name)).getFieldValueAsObject();
}Then it would be returning an object like any interceptor code currently expects.
Then we could have this to get the fieldValue:
public FieldValue getFV(String name)
{
return (FieldValue) ht.get(name);
}this way I can avoid need to do
String kanji = (String) (fieldValues.get("kanji").getFieldValueAsObject());
over and over again and could leave my interceptors as is. -- Shawn
Happily using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ DbForms Mailing List
http://www.wap-force.net/dbforms
