Package proguard.io
Class ClassPath
- java.lang.Object
-
- proguard.io.ClassPath
-
public class ClassPath extends java.lang.Object
This class represents a class path, as a list of ClassPathEntry objects.
-
-
Constructor Summary
Constructors Constructor Description ClassPath(ClassPathEntry... entries)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, ClassPathEntry classPathEntry)
boolean
add(ClassPathEntry classPathEntry)
boolean
addAll(ClassPath classPath)
void
clear()
ClassPathEntry
get(int index)
java.util.List<ClassPathEntry>
getClassPathEntries()
Returns the list of class path entries for this class path.boolean
hasOutput()
Returns whether the class path contains any output entries.boolean
isEmpty()
ClassPathEntry
remove(int index)
int
size()
-
-
-
Constructor Detail
-
ClassPath
public ClassPath(ClassPathEntry... entries)
-
-
Method Detail
-
hasOutput
public boolean hasOutput()
Returns whether the class path contains any output entries.
-
getClassPathEntries
public java.util.List<ClassPathEntry> getClassPathEntries()
Returns the list of class path entries for this class path.
-
clear
public void clear()
-
add
public void add(int index, ClassPathEntry classPathEntry)
-
add
public boolean add(ClassPathEntry classPathEntry)
-
addAll
public boolean addAll(ClassPath classPath)
-
get
public ClassPathEntry get(int index)
-
remove
public ClassPathEntry remove(int index)
-
isEmpty
public boolean isEmpty()
-
size
public int size()
-
-