org.schmant.task.confable
Interface BootClasspathConfigurable<T extends BootClasspathConfigurable<T>>

All Known Implementing Classes:
ExtJavadocTF

public interface BootClasspathConfigurable<T extends BootClasspathConfigurable<T>>

This interface defines an object that can be configured with a boot classpath. The classpath entries are stored in a list that contains the entries in the order that they were added.

Since:
0.5
Author:
Karl Gustafsson

Method Summary
 T addBootClasspathEntries(Object o)
          This method does the same as addBootClasspathEntry(Object).
 T addBootClasspathEntry(Object o)
          Add one or several entries to the boot classpath.
 T clearBootClasspathEntries()
           
 

Method Detail

addBootClasspathEntry

T addBootClasspathEntry(Object o)
Add one or several entries to the boot classpath.

Parameters:
o - The boot classpath entry or entries. If this object is an array or a collection, it is flattened (see FlatteningList). It is up to the object implementing this to decide how each object should be interpreted.
Returns:
this

addBootClasspathEntries

T addBootClasspathEntries(Object o)
This method does the same as addBootClasspathEntry(Object).

Parameters:
o - The boot classpath entry or entries. See addBootClasspathEntry(Object).
Returns:
this

clearBootClasspathEntries

T clearBootClasspathEntries()