public class AlgorithmX extends AbstractExternalActivity {
/**
* Executes the java activity action.
*/
public void doActivity() throws ExternalException {
...
}
}
2) Call a method of a Java class directly from the workframe.
(look at section 2.42 JAVA INTEGRATION (page 126) in the language document. You can find this PDF document in the docs folder of the Brahms installation)
Abid,b:
jimport ejenta.com.ClassX;
public class ClassX {
public void AlgorithmX() { ... }
}
Maarten.