add FilenameFilter interface

This commit is contained in:
Zsombor 2008-07-13 18:24:23 -06:00 committed by Joel Dice
parent 0e539615e7
commit dcccddeb55

View File

@ -0,0 +1,17 @@
/* Copyright (c) 2008, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
package java.io;
public interface FilenameFilter {
boolean accept(File dir, String name);
}