KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > css > engine > value > svg > MaskManager


1 /*
2
3    Copyright 2002-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.css.engine.value.svg;
19
20 import org.apache.batik.css.engine.CSSEngine;
21 import org.apache.batik.css.engine.value.AbstractValueManager;
22 import org.apache.batik.css.engine.value.URIValue;
23 import org.apache.batik.css.engine.value.Value;
24 import org.apache.batik.css.engine.value.ValueConstants;
25 import org.apache.batik.css.engine.value.ValueManager;
26 import org.apache.batik.util.CSSConstants;
27 import org.w3c.css.sac.LexicalUnit;
28 import org.w3c.dom.DOMException JavaDoc;
29 import org.w3c.dom.css.CSSPrimitiveValue;
30
31 /**
32  * This class provides a manager for the 'mask' property values.
33  *
34  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
35  * @version $Id: MaskManager.java,v 1.6 2005/03/27 08:58:31 cam Exp $
36  */

37 public class MaskManager extends AbstractValueManager {
38     
39     /**
40      * Implements {@link ValueManager#isInheritedProperty()}.
41      */

42     public boolean isInheritedProperty() {
43     return false;
44     }
45
46     /**
47      * Implements {@link ValueManager#getPropertyName()}.
48      */

49     public String JavaDoc getPropertyName() {
50     return CSSConstants.CSS_MASK_PROPERTY;
51     }
52     
53     /**
54      * Implements {@link ValueManager#getDefaultValue()}.
55      */

56     public Value getDefaultValue() {
57         return ValueConstants.NONE_VALUE;
58     }
59
60     /**
61      * Implements {@link ValueManager#createValue(LexicalUnit,CSSEngine)}.
62      */

63     public Value createValue(LexicalUnit lu, CSSEngine engine)
64         throws DOMException JavaDoc {
65     switch (lu.getLexicalUnitType()) {
66     case LexicalUnit.SAC_INHERIT:
67         return ValueConstants.INHERIT_VALUE;
68
69     case LexicalUnit.SAC_URI:
70             return new URIValue(lu.getStringValue(),
71                                 resolveURI(engine.getCSSBaseURI(),
72                                            lu.getStringValue()));
73
74     case LexicalUnit.SAC_IDENT:
75         if (lu.getStringValue().equalsIgnoreCase
76                 (CSSConstants.CSS_NONE_VALUE)) {
77                 return ValueConstants.NONE_VALUE;
78             }
79         }
80         throw createInvalidLexicalUnitDOMException(lu.getLexicalUnitType());
81     }
82
83     /**
84      * Implements {@link
85      * ValueManager#createStringValue(short,String,CSSEngine)}.
86      */

87     public Value createStringValue(short type, String JavaDoc value, CSSEngine engine)
88         throws DOMException JavaDoc {
89         switch (type) {
90         case CSSPrimitiveValue.CSS_IDENT:
91             if (value.equalsIgnoreCase(CSSConstants.CSS_NONE_VALUE)) {
92                 return ValueConstants.NONE_VALUE;
93             }
94             break;
95
96         case CSSPrimitiveValue.CSS_URI:
97             return new URIValue(value,
98                                 resolveURI(engine.getCSSBaseURI(), value));
99     }
100         throw createInvalidStringTypeDOMException(type);
101     }
102 }
103
Popular Tags