01: /*
02: * $RCSfile: CompositeDestAlpha.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:57:32 $
10: * $State: Exp $
11: */
12: package javax.media.jai.operator;
13:
14: import javax.media.jai.EnumeratedParameter;
15:
16: /**
17: * Class used to represent the acceptable values of the "destAlpha"
18: * parameter of the "Composite" operation. Acceptable values for the
19: * "destAlpha" parameter are defined in the <code>CompositeDescriptor</code>
20: * by the constants <code>NO_DESTINATION_ALPHA</code>,
21: * <code>DESTINATION_ALPHA_FIRST</code>, and
22: * <code>DESTINATION_ALPHA_LAST</code>.
23: *
24: * @since JAI 1.1
25: */
26: public final class CompositeDestAlpha extends EnumeratedParameter {
27: CompositeDestAlpha(String name, int value) {
28: super(name, value);
29: }
30: }
|