01: package org.objectweb.celtix.tools.common.toolspec;
02:
03: import org.objectweb.celtix.tools.common.ToolException;
04: import org.objectweb.celtix.tools.common.toolspec.parser.BadUsageException;
05:
06: public interface ToolContainer {
07:
08: void setCommandLine(String[] args) throws BadUsageException;
09:
10: void init() throws ToolException;
11:
12: void execute(boolean exitOnFinish) throws ToolException;
13:
14: }
|