Extending : Processor editor extension : Extending the Processor editor : Creating and generating a property generation rule : Creating a property generation rule
  
Creating a property generation rule
To create a generation rule class, technical developers must extend the com.ibm.btt.tools.transaction.extend.generator.Rule abstract class and override the process method. In the process method, technical developers can manipulate the target tag object according to their own requirements, such as adding new attributes, changing an attribute name or value, and so on. The process method is shown here:
public void process(Taggable object, Map<String, String> attributes, PropMapping mapping, String value)
Go up to
Creating and generating a property generation rule