KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > util > SVG12Constants


1 /*
2
3    Copyright 2000-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 package org.apache.batik.util;
19
20 /**
21  * Define SVG 1.2 constants, such as tag names, attribute names and URI
22  *
23  * @author <a HREF="mailto:tkormann@apache.org">Thierry Kormann</a>
24  * @author <a HREF="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a>
25  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
26  * @version $Id: SVG12Constants.java,v 1.2 2005/03/27 08:58:36 cam Exp $
27  */

28 public interface SVG12Constants extends SVGConstants {
29
30     /** Tag name for Batik's flowRoot extension (SVG 1.2). */
31     public static final String JavaDoc SVG_FLOW_ROOT_TAG =
32         "flowRoot";
33
34     /** Tag name for Batik's flowRoot extension Region element (SVG 1.2). */
35     public static final String JavaDoc SVG_FLOW_REGION_TAG =
36         "flowRegion";
37
38     /** Tag name for Batik's flowRoot extension Region element (SVG 1.2). */
39     public static final String JavaDoc SVG_FLOW_REGION_EXCLUDE_TAG =
40         "flowRegionExclude";
41
42     /** Tag name for Batik's flowRoot extension div element SVG 1.2). */
43     public static final String JavaDoc SVG_FLOW_DIV_TAG =
44         "flowDiv";
45
46     /** Tag name for Batik's flowRoot extension p element SVG 1.2). */
47     public static final String JavaDoc SVG_FLOW_PARA_TAG =
48         "flowPara";
49
50     /** Tag name for Batik's flowRoot extension flow Region break
51      * element SVG 1.2). */

52     public static final String JavaDoc SVG_FLOW_REGION_BREAK_TAG =
53         "flowRegionBreak";
54
55     /** Tag name for Batik's flowRoot extension line element SVG 1.2). */
56     public static final String JavaDoc SVG_FLOW_LINE_TAG =
57         "flowLine";
58
59     /** Tag name for Batik's flowRoot extension span element SVG 1.2). */
60     public static final String JavaDoc SVG_FLOW_SPAN_TAG =
61         "flowSpan";
62
63     /** Tag name for Batik's solid color extension (SVG 1.2). */
64     public static final String JavaDoc SVG_SOLID_COLOR_TAG =
65         "solidColor";
66
67     /** Tag name for Batik's multiImage extension. */
68     public static final String JavaDoc SVG_MULTI_IMAGE_TAG =
69         "multiImage";
70
71     /** Tag name for Batik's subImage multiImage extension. */
72     public static final String JavaDoc SVG_SUB_IMAGE_TAG =
73         "subImage";
74     /** Tag name for Batik's subImageRef multiImage extension. */
75     public static final String JavaDoc SVG_SUB_IMAGE_REF_TAG =
76         "subImageRef";
77
78     /** Attribute name for pixel-width attribute */
79     public static final String JavaDoc SVG_MIN_PIXEL_SIZE_ATTRIBUTE =
80         "min-pixel-size";
81
82     /** Attribute name for pixel-height attribute */
83     public static final String JavaDoc SVG_MAX_PIXEL_SIZE_ATTRIBUTE =
84         "max-pixel-size";
85
86
87     /** Attribute name for filter mx attribute */
88     public static final String JavaDoc SVG_MX_ATRIBUTE =
89         "mx";
90     
91     /** Attribute name for filter my attribute */
92     public static final String JavaDoc SVG_MY_ATRIBUTE =
93         "my";
94     
95     /** Attribute name for filter mw attribute */
96     public static final String JavaDoc SVG_MW_ATRIBUTE =
97         "mw";
98     
99     /** Attribute name for filter mh attribute */
100     public static final String JavaDoc SVG_MH_ATRIBUTE =
101         "mh";
102
103     /** Attribute name for filterPrimitiveMarginsUnits */
104     public static final String JavaDoc SVG_FILTER_PRIMITIVE_MARGINS_UNITS_ATTRIBUTE
105         = "filterPrimitiveMarginsUnits";
106
107     /** Attribute name for filterMarginsUnits */
108     public static final String JavaDoc SVG_FILTER_MARGINS_UNITS_ATTRIBUTE
109         = "filterMarginsUnits";
110
111     /** Default value for filter mx */
112     public static final String JavaDoc SVG_FILTER_MX_DEFAULT_VALUE = "0";
113
114     /** Default value for filter my */
115     public static final String JavaDoc SVG_FILTER_MY_DEFAULT_VALUE = "0";
116
117     /** Default value for filter mw */
118     public static final String JavaDoc SVG_FILTER_MW_DEFAULT_VALUE = "0";
119
120     /** Default value for filter mh */
121     public static final String JavaDoc SVG_FILTER_MH_DEFAULT_VALUE = "0";
122 }
123
Popular Tags