de.dv.sbu.filefilter.buildin
Class AllFilter

java.lang.Object
  extended by de.dv.sbu.filefilter.buildin.AllFilter
All Implemented Interfaces:
IFileFilter

public class AllFilter
extends java.lang.Object
implements IFileFilter

This file filter accepts every file.

Author:
Daniel Vogtland

Constructor Summary
AllFilter()
           
 
Method Summary
 boolean acceptFile(SourceFileInformation fileInfo)
          Will always return true.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AllFilter

public AllFilter()
Method Detail

acceptFile

public boolean acceptFile(SourceFileInformation fileInfo)
Will always return true. Test the given file information object relative to some root directory.

Specified by:
acceptFile in interface IFileFilter
Parameters:
fileInfo - The file information to test.
Returns:
true if the file is accepted. false if the file is rejected.
See Also:
IFileFilter.acceptFile(de.dv.sbu.SourceFileInformation)