General Procedures
How to Annotate Your Custom Builder Class
You should annotate your builder class with the component builder id you will use for your panel. You should also include a TypeBased annotation if you want to use different builders for different object types for the same component builder id. For example:
@ComponentBuilder(“exampleBuilderId”)
@TypeBased(value = "com.acme.SomeType")
public class ExamplePanelBuilder extends TypedAttributesPanelBuilder
Was this helpful?