Function | Parameters | Return Value | Description |
---|
Transformer.__init_(self, web_attribute) | web_attribute: A instance of weblink.metadata.WebAttribute pointing to the 593 record this transformer applies to | Instance | Initializes a new Transformer element. |
Transformer.transform_planta_value_to_web_value(self, value) | value: The value to transform | The transformed value | Transforms a value read from a PLANTA POJO attribute to the web appropriate value.
Overwrites this in a subclass to transform a PLANTA value into the value appropriate for your web interface. |
Transformer.transform_web_value_to_planta_value(self, value) | value: The value to transform | The transformed value | Transforms a value read from a web request into the PLANTA POJO attribute appropriate value.
Overwrites this in a subclass to transform a PLANTA value into the value appropriate for your web interface. |
Transformer.transform(self, value) | value: The value to transform | The transformed value | Method that is called by both planta→web and web→planta transform implementations by default. |