KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > extension > svg > BatikExtConstants


1 /*
2
3    Copyright 2001-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.extension.svg;
19
20
21 public interface BatikExtConstants {
22
23     /** Namespace for batik extentions. */
24     public static final String JavaDoc BATIK_EXT_NAMESPACE_URI =
25         "http://xml.apache.org/batik/ext";
26
27     /** Namespace for batik experimental svg 1.2 elements. */
28     public static final String JavaDoc BATIK_12_NAMESPACE_URI =
29         "http://xml.apache.org/batik/ext";
30
31     /** Namespace for batik experimental svg 1.2 attributes. */
32     public static final String JavaDoc BATIK_12_ATTR_NAMESPACE_URI =
33         "http://xml.apache.org/batik/ext";
34         // null;
35

36     /** Tag name for Batik's regular poly extension. */
37     public static final String JavaDoc BATIK_EXT_REGULAR_POLYGON_TAG =
38         "regularPolygon";
39
40     /** Tag name for Batik's star extension. */
41     public static final String JavaDoc BATIK_EXT_STAR_TAG =
42         "star";
43
44     /** Tag name for Batik's color switch extension. */
45     public static final String JavaDoc BATIK_EXT_COLOR_SWITCH_TAG =
46         "colorSwitch";
47
48     /** Tag name for Batik's histogram normalization extension. */
49     public static final String JavaDoc BATIK_EXT_HISTOGRAM_NORMALIZATION_TAG =
50         "histogramNormalization";
51
52     /** Attribute name for sides attribute */
53     public static final String JavaDoc BATIK_EXT_SIDES_ATTRIBUTE =
54         "sides";
55
56     /** Attribute name for inner radius attribute */
57     public static final String JavaDoc BATIK_EXT_IR_ATTRIBUTE =
58         "ir";
59
60     /** Attribute name for trim percent attribute */
61     public static final String JavaDoc BATIK_EXT_TRIM_ATTRIBUTE =
62         "trim";
63
64
65     /** Tag name for Batik's flowText extension (SVG 1.2). */
66     public static final String JavaDoc BATIK_EXT_FLOW_TEXT_TAG =
67         "flowText";
68
69     /** Tag name for Batik's flowText extension Region element (SVG 1.2). */
70     public static final String JavaDoc BATIK_EXT_FLOW_REGION_TAG =
71         "flowRegion";
72
73     /** Tag name for Batik's flowText extension Region element (SVG 1.2). */
74     public static final String JavaDoc BATIK_EXT_FLOW_REGION_EXCLUDE_TAG =
75         "flowRegionExclude";
76
77     /** Tag name for Batik's flowText extension div element SVG 1.2). */
78     public static final String JavaDoc BATIK_EXT_FLOW_DIV_TAG =
79         "flowDiv";
80
81     /** Tag name for Batik's flowText extension p element SVG 1.2). */
82     public static final String JavaDoc BATIK_EXT_FLOW_PARA_TAG =
83         "flowPara";
84
85     /** Tag name for Batik's flowText extension flow Region break
86      * element SVG 1.2). */

87     public static final String JavaDoc BATIK_EXT_FLOW_REGION_BREAK_TAG =
88         "flowRegionBreak";
89
90     /** Tag name for Batik's flowText extension line element SVG 1.2). */
91     public static final String JavaDoc BATIK_EXT_FLOW_LINE_TAG =
92         "flowLine";
93
94     /** Tag name for Batik's flowText extension span element SVG 1.2). */
95     public static final String JavaDoc BATIK_EXT_FLOW_SPAN_TAG =
96         "flowSpan";
97
98
99     /** Attribute name for x attribute */
100     public static final String JavaDoc BATIK_EXT_X_ATTRIBUTE =
101         "x";
102     /** Attribute name for y attribute */
103     public static final String JavaDoc BATIK_EXT_Y_ATTRIBUTE =
104         "y";
105     /** Attribute name for width attribute */
106     public static final String JavaDoc BATIK_EXT_WIDTH_ATTRIBUTE =
107         "width";
108     /** Attribute name for height attribute */
109     public static final String JavaDoc BATIK_EXT_HEIGHT_ATTRIBUTE =
110         "height";
111
112     /** Attribute name for margin psudo-attribute */
113     public static final String JavaDoc BATIK_EXT_MARGIN_ATTRIBUTE =
114         "margin";
115     /** Attribute name for top-margin attribute */
116     public static final String JavaDoc BATIK_EXT_TOP_MARGIN_ATTRIBUTE =
117         "top-margin";
118     /** Attribute name for right-margin attribute */
119     public static final String JavaDoc BATIK_EXT_RIGHT_MARGIN_ATTRIBUTE =
120         "right-margin";
121     /** Attribute name for bottom-margin attribute */
122     public static final String JavaDoc BATIK_EXT_BOTTOM_MARGIN_ATTRIBUTE =
123         "bottom-margin";
124     /** Attribute name for left-margin attribute */
125     public static final String JavaDoc BATIK_EXT_LEFT_MARGIN_ATTRIBUTE =
126         "left-margin";
127     /** Attribute name for indent attribute/property */
128     public static final String JavaDoc BATIK_EXT_INDENT_ATTRIBUTE =
129         "indent";
130     /** Attribute name for justification */
131     public static final String JavaDoc BATIK_EXT_JUSTIFICATION_ATTRIBUTE =
132         "justification";
133     /** Value for justification to start of region */
134     public static final String JavaDoc BATIK_EXT_JUSTIFICATION_START_VALUE = "start";
135     /** Value for justification to middle of region */
136     public static final String JavaDoc BATIK_EXT_JUSTIFICATION_MIDDLE_VALUE = "middle";
137     /** Value for justification to end of region */
138     public static final String JavaDoc BATIK_EXT_JUSTIFICATION_END_VALUE = "end";
139     /** Value for justification to both edges of region */
140     public static final String JavaDoc BATIK_EXT_JUSTIFICATION_FULL_VALUE = "full";
141
142
143     /** Attribute name for preformated data */
144     public static final String JavaDoc BATIK_EXT_PREFORMATTED_ATTRIBUTE =
145         "preformatted";
146
147    /** Attribute name for preformated data */
148     public static final String JavaDoc BATIK_EXT_VERTICAL_ALIGN_ATTRIBUTE =
149         "vertical-align";
150
151     /** Value for vertical-align to top of region */
152     public static final String JavaDoc BATIK_EXT_ALIGN_TOP_VALUE = "top";
153     /** Value for vertical-align to middle of region */
154     public static final String JavaDoc BATIK_EXT_ALIGN_MIDDLE_VALUE = "middle";
155     /** Value for vertical-align to bottom of region */
156     public static final String JavaDoc BATIK_EXT_ALIGN_BOTTOM_VALUE = "bottom";
157
158 }
159
160
161
162
163
164
165
166
Popular Tags