DirFileFilter.java :  » Client » androzic » com » androzic » util » Android Open Source

Android Open Source » Client » androzic 
androzic » com » androzic » util » DirFileFilter.java
package com.androzic.util;

import java.io.File;
import java.io.FileFilter;

public class DirFileFilter implements FileFilter
{

  @Override
  public boolean accept(File pathname)
  {
    return pathname.isDirectory();
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.