1 package org.objectweb.celtix.tools.common.toolspec;2 import org.objectweb.celtix.tools.common.ToolException;3 import org.objectweb.celtix.tools.common.toolspec.parser.BadUsageException;4 5 public interface ToolContainer {6 7 void setCommandLine(String [] args) throws BadUsageException;8 void init() throws ToolException;9 void execute(boolean exitOnFinish) throws ToolException;10 11 }12