All Downloads are FREE. Search and download functionalities are using the official Maven repository.

PlasticMetal.JMobileSuitLite.ObjectModel.Executable Maven / Gradle / Ivy

There is a newer version: 1.1.0-alpha1
Show newest version
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