proguard
Class ClassPathEntry
java.lang.Object
proguard.ClassPathEntry
public class ClassPathEntry
- extends java.lang.Object
This class represents an entry from a class path: a jar, a war, a zip, an
ear, or a directory, with a name and a flag to indicates whether the entry is
an input entry or an output entry. Optional filters can be specified for the
names of the contained resource/classes, jars, wars, ears, and zips.
|
Constructor Summary |
ClassPathEntry(java.io.File file,
boolean isOutput)
Creates a new ClassPathEntry with the given name and type. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ClassPathEntry
public ClassPathEntry(java.io.File file,
boolean isOutput)
- Creates a new ClassPathEntry with the given name and type.
getName
public java.lang.String getName()
- Returns the path name of the entry.
getFile
public java.io.File getFile()
setFile
public void setFile(java.io.File file)
isOutput
public boolean isOutput()
setOutput
public void setOutput(boolean output)
getFilter
public java.lang.String getFilter()
setFilter
public void setFilter(java.lang.String filter)
getJarFilter
public java.lang.String getJarFilter()
setJarFilter
public void setJarFilter(java.lang.String filter)
getWarFilter
public java.lang.String getWarFilter()
setWarFilter
public void setWarFilter(java.lang.String filter)
getEarFilter
public java.lang.String getEarFilter()
setEarFilter
public void setEarFilter(java.lang.String filter)
getZipFilter
public java.lang.String getZipFilter()
setZipFilter
public void setZipFilter(java.lang.String filter)
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object