Package org.apache.bcel.util
Interface ClassPath.ClassFile
- 
- Enclosing class:
 - ClassPath
 
public static interface ClassPath.ClassFileContains information about file/ZIP entry of the Java class. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBase()java.io.InputStreamgetInputStream()java.lang.StringgetPath()longgetSize()longgetTime() 
 - 
 
- 
- 
Method Detail
- 
getBase
java.lang.String getBase()
- Returns:
 - base path of found class, i.e. class is contained relative to that path, which may either denote a directory, or zip file
 
 
- 
getInputStream
java.io.InputStream getInputStream() throws java.io.IOException- Returns:
 - input stream for class file.
 - Throws:
 java.io.IOException
 
- 
getPath
java.lang.String getPath()
- Returns:
 - canonical path to class file.
 
 
- 
getSize
long getSize()
- Returns:
 - size of class file.
 
 
- 
getTime
long getTime()
- Returns:
 - modification time of class file.
 
 
 - 
 
 -