FileData.java :  » Net » hyperpool-0.4.0 » vicazh » hyperpool » stream » Java Open Source

Java Open Source » Net » hyperpool 0.4.0 
hyperpool 0.4.0 » vicazh » hyperpool » stream » FileData.java
package vicazh.hyperpool.stream;

import java.io.*;

/**
 * The file service data
 * 
 * @author Victor Zhigunov
 * @version 0.4.0
 */
public class FileData implements Serializable {
  boolean isDirExists;

  public FileData(boolean isDirExists) {
    this.isDirExists = isDirExists;
  }
}
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.