()
| 58 | } |
| 59 | |
| 60 | public static PluginLoader getJepPluginLoader() |
| 61 | { |
| 62 | return new PluginLoader() |
| 63 | { |
| 64 | |
| 65 | @Override |
| 66 | public void loadPlugin(Class clazz) |
| 67 | { |
| 68 | addCommand(clazz); |
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public Class[] getPluginClasses() |
| 73 | { |
| 74 | return new Class[]{PCGenCommand.class}; |
| 75 | } |
| 76 | }; |
| 77 | } |
| 78 | |
| 79 | public PJEP() |
| 80 | { |
no outgoing calls
no test coverage detected