Convert a class name from java source file dot notation to class file slash notation..paramdotName the class name in dot notation (eg. java.lang.Object).returnthe class name in slash notation (eg. java/lang/Object). return dotName.replace('.", '/");
return dotName.replace('.", '/");
Convert a class name from class file slash notation to java source file dot notation.paramname the class name in slash notation org/apache/antreturnthe class name in dot notation (eg. java.lang.Object). return name.replace('\\", '.").replace('/", '.");
return name.replace('\\", '.").replace('/", '.");