KickJava   Java API By Example, From Geeks To Geeks.

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


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 'marker-*' property values.
33  *
34  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
35  * @version $Id: MarkerManager.java,v 1.6 2005/03/27 08:58:31 cam Exp $
36  */

37 public class MarkerManager extends AbstractValueManager {
38     
39     /**
40      * The handled property.
41      */

42     protected String JavaDoc property;
43
44     /**
45      * Creates a new MarkerManager.
46      */

47     public MarkerManager(String JavaDoc prop) {
48         property = prop;
49     }
50
51     /**
52      * Implements {@link ValueManager#isInheritedProperty()}.
53      */

54     public boolean isInheritedProperty() {
55     return true;
56     }
57
58     /**
59      * Implements {@link ValueManager#getPropertyName()}.
60      */

61     public String JavaDoc getPropertyName() {
62     return property;
63     }
64     
65     /**
66      * Implements {@link ValueManager#getDefaultValue()}.
67      */

68     public Value getDefaultValue() {
69         return ValueConstants.NONE_VALUE;
70     }
71
72     /**
73      * Implements {@link ValueManager#createValue(LexicalUnit,CSSEngine)}.
74      */

75     public Value createValue(LexicalUnit lu, CSSEngine engine)
76         throws DOMException JavaDoc {
77     switch (lu.getLexicalUnitType()) {
78     case LexicalUnit.SAC_INHERIT:
79         return ValueConstants.INHERIT_VALUE;
80
81     case LexicalUnit.SAC_URI:
82             return new URIValue(lu.getStringValue(),
83                                 resolveURI(engine.getCSSBaseURI(),
84                                            lu.getStringValue()));
85
86     case LexicalUnit.SAC_IDENT:
87         if (lu.getStringValue().equalsIgnoreCase
88                 (CSSConstants.CSS_NONE_VALUE)) {
89                 return ValueConstants.NONE_VALUE;
90             }
91         }
92         throw createInvalidLexicalUnitDOMException(lu.getLexicalUnitType());
93     }
94
95     /**
96      * Implements {@link
97      * ValueManager#createStringValue(short,String,CSSEngine)}.
98      */

99     public Value createStringValue(short type, String JavaDoc value, CSSEngine engine)
100         throws DOMException JavaDoc {
101         switch (type) {
102         case CSSPrimitiveValue.CSS_IDENT:
103             if (value.equalsIgnoreCase(CSSConstants.CSS_NONE_VALUE)) {
104                 return ValueConstants.NONE_VALUE;
105             }
106             break;
107
108         case CSSPrimitiveValue.CSS_URI:
109             return new URIValue(value,
110                                 resolveURI(engine.getCSSBaseURI(), value));
111     }
112         throw createInvalidStringTypeDOMException(type);
113     }
114 }
115
Popular Tags