org.apache.tools.ant.taskdefs.optional.depend
Class ClassFileUtils
java.lang.Object
org.apache.tools.ant.taskdefs.optional.depend.ClassFileUtils
public class ClassFileUtils
extends java.lang.Object
Utility class file routines. This class provides a number of static
utility methods to convert between the formats used in the Java class
file format and those commonly used in Java programming.
static String | convertDotName(String dotName) - Convert a class name from java source file dot notation to class file
slash notation..
|
static String | convertSlashName(String name) - Convert a class name from class file slash notation to java source
file dot notation.
|
convertDotName
public static String convertDotName(String dotName)
Convert a class name from java source file dot notation to class file
slash notation..
dotName
- the class name in dot notation (eg. java.lang.Object).
- the class name in slash notation (eg. java/lang/Object).
convertSlashName
public static String convertSlashName(String name)
Convert a class name from class file slash notation to java source
file dot notation.
name
- the class name in slash notation org/apache/ant
- the class name in dot notation (eg. java.lang.Object).
Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.