DirectorSave.java :  » Image » jdebye » save » Java Open Source

Java Open Source » Image » jdebye 
jdebye » save » DirectorSave.java
package save;

import javax.media.jai.PlanarImage;

// Director
public class DirectorSave {
  // Methods
  private boolean retorno;
  
  public void DirectorSave()
  {
    //for reference only
  }
  
  public boolean Construct(Save save, PlanarImage src, String filename )
  {
    this.retorno=save.makeSave(src, filename);
    return this.retorno;        
  }  

}
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.