public class ImportWizard
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
java.util.Vector |
CLASS_LIST
Stores the list of all classes in the classpath
|
java.lang.String |
lookFor |
Constructor and Description |
---|
ImportWizard(FreeMindMain frame) |
Modifier and Type | Method and Description |
---|---|
void |
addClassesFromDir(java.util.Vector classList,
java.io.File rootDir,
java.io.File currentDir,
int recursionLevel)
Adds the classes from the supplied directory to the class list.
|
void |
addClassesFromZip(java.util.Vector classList,
java.io.File classPathFile)
Adds the classes from the supplied Zip file to the class list.
|
void |
buildClassList()
Build the list of classes
|
public final java.lang.String lookFor
public java.util.Vector CLASS_LIST
public ImportWizard(FreeMindMain frame)
public void buildClassList()
public void addClassesFromZip(java.util.Vector classList, java.io.File classPathFile)
classList
- the Vector to add the classes toclassPathFile
- the File to scan as a zip filepublic void addClassesFromDir(java.util.Vector classList, java.io.File rootDir, java.io.File currentDir, int recursionLevel)
classList
- the Vector to add the classes tocurrentDir
- the File to recursively scan as a directoryrecursionLevel
- To ensure that after a certain depth the recursive directory search stops