PlasticMetal.JMobileSuitLite.ObjectModel.Executable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JMobileSuitLite Show documentation
Show all versions of JMobileSuitLite Show documentation
Light weight Mobile Suit for Java. Migrated from .NET Core.
package PlasticMetal.JMobileSuitLite.ObjectModel;
import PlasticMetal.Jarvis.ObjectModel.Tuple;
import PlasticMetal.JMobileSuitLite.TraceBack;
import java.lang.reflect.InvocationTargetException;
/**
* Represents an entity which can be executed.
*/
public interface Executable
{
/**
* Execute this object.
* @param args The arguments for execution.
* @return TraceBack result of this object.
*/
Tuple Execute(String[] args) throws InvocationTargetException, IllegalAccessException, InstantiationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy