()
| 1972 | } |
| 1973 | |
| 1974 | public static PlugInTool getPlugInTool() { |
| 1975 | PlugInTool tool = null; |
| 1976 | if (instance==null) |
| 1977 | return null; |
| 1978 | if (current<instance.tools.length) |
| 1979 | tool = instance.tools[current]; |
| 1980 | if (tool!=null && tool instanceof MacroToolRunner) |
| 1981 | tool = null; |
| 1982 | return tool; |
| 1983 | } |
| 1984 | |
| 1985 | void runMacroTool(int id) { |
| 1986 | if (id<getNumTools() && tools[id]!=null) |
no outgoing calls
no test coverage detected