renamed all modules

This commit is contained in:
Andy Clement
2014-01-15 11:36:24 -08:00
parent 342420b2ed
commit ceef61cf98
1055 changed files with 301 additions and 259 deletions

20
testdata/src/main/java/plugins/One.java vendored Normal file
View File

@@ -0,0 +1,20 @@
package plugins;
public class One {
// default ctor
public One() {
}
/**
* These comments prevent the unused warning ;)
*
* @param string
* @param i
*/
public One(String string, int i) {
}
public void run() {
}
}

View File

@@ -0,0 +1,18 @@
package plugins;
public class PluginTesting {
public static void main(String[] args) {
registerPlugin();
}
public static void registerPlugin() {
// try {
// Class<?> preprocessor = Class.forName("org.springsource.loaded.SpringLoadedPreProcessor");
// preprocessor.getDeclaredMethod("registerPlugin",, parameterTypes)
// } catch (Exception e) {
//
// }
}
}