1 18 19 package com.knowgate.jcifs.smb; 20 21 public class DosFileFilter implements SmbFileFilter { 22 23 protected String wildcard; 24 protected int attributes; 25 26 public DosFileFilter( String wildcard, int attributes ) { 27 this.wildcard = wildcard; 28 this.attributes = attributes; 29 } 30 31 37 public boolean accept( SmbFile file ) throws SmbException { 38 return true; 39 } 40 } 41 | Popular Tags |