Package com.jidesoft.converter
Interface ConverterContextSupport
-
public interface ConverterContextSupportThe interface indicates the class who extends it can support ConverterContext.- See Also:
ConverterContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConverterContextgetConverterContext()Gets the converter context.java.lang.Class<?>getType()Gets the class of the value.voidsetConverterContext(ConverterContext context)Sets the converter context.voidsetType(java.lang.Class<?> clazz)Sets the class of the value.
-
-
-
Method Detail
-
setConverterContext
void setConverterContext(ConverterContext context)
Sets the converter context.- Parameters:
context- converter context
-
getConverterContext
ConverterContext getConverterContext()
Gets the converter context.- Returns:
- converter context
-
getType
java.lang.Class<?> getType()
Gets the class of the value.- Returns:
- the class of the value.
-
setType
void setType(java.lang.Class<?> clazz)
Sets the class of the value.- Parameters:
clazz-
-
-