import java.io.IOException;
public class ModuleExecutor {
public String run(IWikiModel model, String module, String method, Frame frame) throws IOException {
final Globals globals = getGlobals();
MwCommon common = new MwCommon(model, globals);
return common.execute(module, method, frame);
}