mev-4.0.01/source/org/tigr/util/swing/ImageFileFilter.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 /*
2 26 Feb 07 jari 2 Copyright @ 1999-2003, The Institute for Genomic Research (TIGR).
2 26 Feb 07 jari 3 All rights reserved.
2 26 Feb 07 jari 4 */
2 26 Feb 07 jari 5 /*
2 26 Feb 07 jari 6  * $RCSfile: ImageFileFilter.java,v $
2 26 Feb 07 jari 7  * $Revision: 1.1.1.1 $
2 26 Feb 07 jari 8  * $Date: 2003/08/21 21:04:23 $
2 26 Feb 07 jari 9  * $Author: braisted $
2 26 Feb 07 jari 10  * $State: Exp $
2 26 Feb 07 jari 11  */
2 26 Feb 07 jari 12 package org.tigr.util.swing;
2 26 Feb 07 jari 13
2 26 Feb 07 jari 14 import com.sun.media.jai.codec.ImageEncodeParam;
2 26 Feb 07 jari 15
2 26 Feb 07 jari 16 public interface ImageFileFilter {
2 26 Feb 07 jari 17     public String getFileFormat();
2 26 Feb 07 jari 18     public ImageEncodeParam getImageEncodeParam();
2 26 Feb 07 jari 19 }