| |
|
| java.lang.Object org.directwebremoting.spring.AbstractConfig org.directwebremoting.spring.ConverterConfig
ConverterConfig | public class ConverterConfig extends AbstractConfig (Code) | | The configuration for a Converter.
It allows the specification of the following optional configuration parameters:
- includes - the list of method names to include
- excludes - the list of method names to exclude
- force - if
true instructs DWR to use reflection modifiers to access private
members of objects
author: Brendan Grainger author: Joe Walker [joe at getahead dot ltd dot uk] |
getJavascriptClassName | public String getJavascriptClassName()(Code) | | the javascriptClassName |
getType | public String getType()(Code) | | Gets the converter type.
Returns the converter type |
isForce | public boolean isForce()(Code) | | If true DWR will use reflection modifiers to access private members of objects
- Returns whether to use reflection for accessing private members |
setForce | public void setForce(boolean force)(Code) | | Instruct DWR to use reflection modifiers to access private members of objects
Parameters: force - - if true DWR will use reflection to access private members of objects |
setJavascriptClassName | public void setJavascriptClassName(String javascriptClassName)(Code) | | Parameters: javascriptClassName - the javascriptClassName to set |
setType | public void setType(String converterType)(Code) | | Sets the converter type.
Parameters: converterType - Sets the converter type |
|
|
|