org.parallelj.launching.usercode.UserCodeManagement.aj Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parallelj-launching Show documentation
Show all versions of parallelj-launching Show documentation
ParallelJ is a Java framework for parallel computing. It provides flow modeling and execution. This projet covers the launching of a ParallelJ program purpose. It allows to launch easily the programs, and access them remotely.
The newest version!
package org.parallelj.launching.usercode;
import java.lang.reflect.Method;
public aspect UserCodeManagement {
declare parents: org.parallelj.internal.kernel.KProgram
implements org.parallelj.launching.usercode.IUserReturnCode;
/*
* Add the interface IUserReturnCodeCode to the KProgram
*/
public String org.parallelj.launching.usercode.IUserReturnCode.errorCode = "";
public Method org.parallelj.launching.usercode.IUserReturnCode.getterReturnCodeMethod;
public String org.parallelj.launching.usercode.IUserReturnCode.getUserReturnCode() {
return this.errorCode;
}
public void org.parallelj.launching.usercode.IUserReturnCode.setUserReturnCode(String errorCode) {
this.errorCode = errorCode;
}
public void org.parallelj.launching.usercode.IUserReturnCode.setUserReturnCodeGetterMethod(Method getterFieldMethod) {
this.getterReturnCodeMethod = getterFieldMethod;
}
public Method org.parallelj.launching.usercode.IUserReturnCode.getUserReturnCodeGetterMethod() {
return this.getterReturnCodeMethod;
}
}