public abstract class ImporterFileFilter
extends java.lang.Object
implements org.gjt.sp.jedit.io.VFSFileFilter
Constructor and Description |
---|
ImporterFileFilter() |
Modifier and Type | Method and Description |
---|---|
boolean |
accept(java.lang.String url)
Calls
VFSFileFilter.accept(VFSFile) . |
protected void |
done()
Called by project viewer after the filter is used for importing.
|
java.lang.String |
getId()
This method should return a string that uniquely identifies the
filter.
|
abstract java.lang.String |
getRecurseDescription()
This method will be called by the toString() method when showing this
filter as an option to the dialog shown when asking about whether the
user wants to recurse into the directories selected for importing.
|
java.lang.String |
toString()
Calls getRecurseDescription().
|
public abstract java.lang.String getRecurseDescription()
It should return a short, descriptive string of what the filter does. For example, "Import all files." or "Use the CVS/Entries file."
public java.lang.String toString()
toString
in class java.lang.Object
public boolean accept(java.lang.String url)
VFSFileFilter.accept(VFSFile)
.accept
in interface org.gjt.sp.jedit.io.VFSFileFilter
public java.lang.String getId()
protected void done()