ProGuard

proguard
Class ClassPath

java.lang.Object
  extended byproguard.ClassPath

public class ClassPath
extends Object

This class represents a class path, as a list of ClassPathEntry objects.


Constructor Summary
ClassPath()
           
 
Method Summary
 boolean add(ClassPathEntry classPathEntry)
           
 void add(int index, ClassPathEntry classPathEntry)
           
 boolean addAll(ClassPath classPath)
           
 void clear()
           
 ClassPathEntry get(int index)
           
 boolean hasOutput()
          Returns whether the class path contains any output entries.
 boolean isEmpty()
           
 ClassPathEntry remove(int index)
           
 int size()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClassPath

public ClassPath()
Method Detail

hasOutput

public boolean hasOutput()
Returns whether the class path contains any output entries.


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()

ProGuard