Property | Description |
Class Name | The value of this property can be the simple name of a class (e.g. MyTransformer) or a fully qualified class name (e.g. com.company.transformers.MyTransformer). If a simple name is specified, the corresponding Java class is generated into src/bundleId/data/transformer/classname.java. If a fully qualified class name is provided, the transformer class is be generated but must be defined in the projects class path. Press CTRL+SPACE to view the list of built-in transformers provided by Mobile Development. All transformer implementations must implement IDataTransformer. |
Constructor Arguments | A couple of string values can be specified here to be passed to the transformer as constructor arguments. Only data type String is supported. The transformer needs to offer a constructor to handle the specified number of String arguments, e.g., a pattern for date conversion can be specified here. |