com.opensymphony.xwork2.ognl
Class XWorkTypeConverterWrapper
java.lang.Object
com.opensymphony.xwork2.ognl.XWorkTypeConverterWrapper
- All Implemented Interfaces:
- TypeConverter
public class XWorkTypeConverterWrapper
- extends java.lang.Object
- implements TypeConverter
Wraps an OGNL TypeConverter as an XWork TypeConverter
Method Summary |
java.lang.Object |
convertValue(java.util.Map context,
java.lang.Object target,
java.lang.reflect.Member member,
java.lang.String propertyName,
java.lang.Object value,
java.lang.Class toType)
Converts the given value to a given type. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
XWorkTypeConverterWrapper
public XWorkTypeConverterWrapper(ognl.TypeConverter conv)
convertValue
public java.lang.Object convertValue(java.util.Map context,
java.lang.Object target,
java.lang.reflect.Member member,
java.lang.String propertyName,
java.lang.Object value,
java.lang.Class toType)
- Description copied from interface:
TypeConverter
- Converts the given value to a given type. The OGNL context, target, member and
name of property being set are given. This method should be able to handle
conversion in general without any context, target, member or property name specified.
- Specified by:
convertValue
in interface TypeConverter
- Parameters:
context
- context under which the conversion is being donetarget
- target object in which the property is being setmember
- member (Constructor, Method or Field) being setpropertyName
- property name being setvalue
- value to be convertedtoType
- type to which value is converted
- Returns:
- Converted value of type toType or TypeConverter.NoConversionPossible to indicate that the
conversion was not possible.
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.