KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > css > engine > value > svg12 > SVG12ValueConstants


1 /*
2
3    Copyright 2004 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
19 package org.apache.batik.css.engine.value.svg12;
20
21 import org.apache.batik.css.engine.value.StringValue;
22 import org.apache.batik.css.engine.value.Value;
23
24 import org.apache.batik.css.engine.value.svg.SVGValueConstants;
25 import org.apache.batik.util.SVG12CSSConstants;
26
27 import org.w3c.dom.css.CSSPrimitiveValue;
28
29 /**
30  * This interface provides constants for SVG 1.2 values.
31  *
32  * @author <a HREF="mailto:deweese@apache.org">deweese</a>
33  * @version $Id: SVG12ValueConstants.java,v 1.2 2005/03/27 08:58:31 cam Exp $
34  */

35 public interface SVG12ValueConstants extends SVGValueConstants {
36
37     /** The 'start' keyword. */
38     Value START_VALUE = new StringValue(CSSPrimitiveValue.CSS_IDENT,
39                                          SVG12CSSConstants.CSS_FULL_VALUE);
40     /** The 'middle' keyword. */
41     Value MIDDLE_VALUE = new StringValue(CSSPrimitiveValue.CSS_IDENT,
42                                          SVG12CSSConstants.CSS_MIDDLE_VALUE);
43     /** The 'end' keyword. */
44     Value END_VALUE = new StringValue(CSSPrimitiveValue.CSS_IDENT,
45                                          SVG12CSSConstants.CSS_END_VALUE);
46     /** The 'full' keyword. */
47     Value FULL_VALUE = new StringValue(CSSPrimitiveValue.CSS_IDENT,
48                                          SVG12CSSConstants.CSS_FULL_VALUE);
49     /** The 'normal' keyword, for 'line-height'. */
50     Value NORMAL_VALUE = new StringValue(CSSPrimitiveValue.CSS_IDENT,
51                                          SVG12CSSConstants.CSS_NORMAL_VALUE);
52
53 };
54
Popular Tags