Package com.zerog.ia.api.pub
Interface CustomCodeActionBuilder
-
public interface CustomCodeActionBuilder
Implementing this interface gives a custom code author a way of building their custom action. Classes that implement this interface should be named with the same name as their custom code action plus "Builder" appended to the end. For example, if the custom action is named MyCustomCodeAction, its builder class should be named MyCustomCodeActionBuilder. It should also be in the same package as the custom action.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
build(CustomBuildServices services)
-
-
-
Method Detail
-
build
void build(CustomBuildServices services)
-
-