Let's create the table handler class first, since we will need this in order to complete the form handler class. To use the SysExtension pattern, we will need at least two classes: the attribute class and the class that will be constructed using the pattern.
- To create the attribute class, choose to add a new item to the project, select the Code node, and then choose Class from the artifact list.
- Enter ConWHSVehicleServiceStatusAttribute in the Name field and press Add.
- Alter the class declaration to be as follows:
class ConWHSVehicleServiceStatusAttribute extends SysAttribute implements SysExtensionIAttribute { }
- We will need to store the attribute we are handling as a variable in the class, so declare the service status ...