Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note
This step is necessary only if you didn't copy the IDL .../<Interface>ComponentHelper.java.tpl helper into your package.


Code Block
languagejava
titleJava Server Class Definition
//Replace package alma.<Module>.<Interface>Impl; //for:
package alma.<PackageChosenForComponentHelper>;

//Replace import alma.Observatory.<Interface>Impl.<Interface>Impl; //for:
import alma.<PackageChosenForComponentImpl>.<ClassNameForComponentImpl>;

//Replace return new <Interface>Impl(); // for
return new <ClassNameForComponentImpl>();

...