Set the value of the shownInSolutionManager property to true by calling the setShownInSolutionManager() method on the implementation of the Extension object.
The following lines in the Manager.java class show how the EAM Sample Solution sets the shownInSolutionManager property.
private Extension createExtensionObject() {
Extension extension = new Extension();
[...]
ExtSolutionManagerInfo extSolutionManagerInfo =
new ExtSolutionManagerInfo();
[...]
extension.setSolutionManagerInfo(extSolutionManagerInfo);
extension.setShownInSolutionManager(true);
[...]
}
|