return theModule;
}
private boolean checkVersions(Class<?> theClass) {
RLVizVersion theLinkedLibraryVizVersion=rlVizLib.rlVizCore.getRLVizSpecVersion();
RLVizVersion ourCompileVersion=rlVizLib.rlVizCore.getRLVizSpecVersionOfClassWhenCompiled(theClass);
if(!theLinkedLibraryVizVersion.equals(ourCompileVersion)){
System.err.println("Warning :: Possible RLVizLib Incompatibility");
System.err.println("Warning :: Runtime version used by "+theClass.getName()+" is: "+theLinkedLibraryVizVersion);
System.err.println("Warning :: Compile version used to build "+theClass.getName()+" is: "+ourCompileVersion);