01: /*
02: * $RCSfile: ImageDecodeParam.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:55:30 $
10: * $State: Exp $
11: */
12: package com.sun.media.jai.codec;
13:
14: import java.io.Serializable;
15:
16: /**
17: * An empty (marker) interface to be implemented by all image decoder
18: * parameter classes.
19: *
20: * <p><b> This interface is not a committed part of the JAI API. It may
21: * be removed or changed in future releases of JAI.</b>
22: */
23: public interface ImageDecodeParam extends Cloneable, Serializable {
24: }
|