KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > dom > svg > SVGOMFECompositeElement


1 /*
2
3    Copyright 2000-2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.dom.svg;
19
20 import org.apache.batik.dom.AbstractDocument;
21 import org.w3c.dom.Node JavaDoc;
22 import org.w3c.dom.svg.SVGAnimatedEnumeration;
23 import org.w3c.dom.svg.SVGAnimatedNumber;
24 import org.w3c.dom.svg.SVGAnimatedString;
25 import org.w3c.dom.svg.SVGFECompositeElement;
26
27 /**
28  * This class implements {@link SVGFECompositeElement}.
29  *
30  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
31  * @version $Id: SVGOMFECompositeElement.java,v 1.13 2004/08/18 07:13:15 vhardy Exp $
32  */

33 public class SVGOMFECompositeElement
34     extends SVGOMFilterPrimitiveStandardAttributes
35     implements SVGFECompositeElement {
36
37     /**
38      * The 'operator' attribute values.
39      */

40     protected final static String JavaDoc[] OPERATOR_VALUES = {
41         "",
42         SVG_OVER_VALUE,
43         SVG_IN_VALUE,
44         SVG_OUT_VALUE,
45         SVG_ATOP_VALUE,
46         SVG_XOR_VALUE,
47         SVG_ARITHMETIC_VALUE
48     };
49
50     /**
51      * Creates a new SVGOMFECompositeElement object.
52      */

53     protected SVGOMFECompositeElement() {
54     }
55
56     /**
57      * Creates a new SVGOMFECompositeElement object.
58      * @param prefix The namespace prefix.
59      * @param owner The owner document.
60      */

61     public SVGOMFECompositeElement(String JavaDoc prefix, AbstractDocument owner) {
62         super(prefix, owner);
63     }
64
65     /**
66      * <b>DOM</b>: Implements {@link Node#getLocalName()}.
67      */

68     public String JavaDoc getLocalName() {
69         return SVG_FE_COMPOSITE_TAG;
70     }
71
72     /**
73      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getIn1()}.
74      */

75     public SVGAnimatedString getIn1() {
76         return getAnimatedStringAttribute(null, SVG_IN_ATTRIBUTE);
77     }
78
79     /**
80      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getIn2()}.
81      */

82     public SVGAnimatedString getIn2() {
83         return getAnimatedStringAttribute(null, SVG_IN2_ATTRIBUTE);
84     }
85
86     /**
87      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getOperator()}.
88      */

89     public SVGAnimatedEnumeration getOperator() {
90         return getAnimatedEnumerationAttribute
91             (null, SVG_OPERATOR_ATTRIBUTE, OPERATOR_VALUES, (short)1);
92     }
93
94     /**
95      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getK1()}.
96      */

97     public SVGAnimatedNumber getK1() {
98         return getAnimatedNumberAttribute(null, SVG_K1_ATTRIBUTE, 0f);
99     }
100
101     /**
102      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getK2()}.
103      */

104     public SVGAnimatedNumber getK2() {
105         return getAnimatedNumberAttribute(null, SVG_K2_ATTRIBUTE, 0f);
106     }
107
108     /**
109      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getK3()}.
110      */

111     public SVGAnimatedNumber getK3() {
112         return getAnimatedNumberAttribute(null, SVG_K3_ATTRIBUTE, 0f);
113     }
114
115     /**
116      * <b>DOM</b>: Implements {@link SVGFECompositeElement#getK4()}.
117      */

118     public SVGAnimatedNumber getK4() {
119         return getAnimatedNumberAttribute(null, SVG_K4_ATTRIBUTE, 0f);
120     }
121
122     /**
123      * Returns a new uninitialized instance of this object's class.
124      */

125     protected Node JavaDoc newNode() {
126         return new SVGOMFECompositeElement();
127     }
128 }
129
Popular Tags