1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.beehive.netui.util.internal.FileUtils; 21 22 import java.io.FilenameFilter ; 23 import java.io.File ; 24 25 26 31 public class PageFlowFileFilter implements FilenameFilter  32 { 33 public boolean accept( File dir, String name ) 34 { 35 return FileUtils.osSensitiveEndsWith( name, PageFlowConstants.JPF_EXTENSION ); 36 } 37 } 38 | Popular Tags |