org.objectweb.celtix.tools.common.toolspec.Tool Maven / Gradle / Ivy
The newest version!
package org.objectweb.celtix.tools.common.toolspec;
import org.objectweb.celtix.tools.common.ToolException;
public interface Tool {
String TOOL_SPEC_PUBLIC_ID = "http://www.xsume.com/Xutil/ToolSpecification";
void init() throws ToolException;
void setContext(ToolContext ctx);
/**
* A tool has to be prepared to perform it's duty any number of times.
*/
void performFunction() throws ToolException;
void destroy() throws ToolException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy