01: /*
02: * Copyright (c) 2000 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
10: * details.
11: */
12:
13: package org.w3c.dom.css;
14:
15: /**
16: * The <code>CSS2TextShadow</code> interface represents a simple value for
17: * the text-shadow CSS Level 2 property.
18: * <p> For this extension of the <code>CSSValue</code> interface, the
19: * <code>valueType</code> attribute of the underlying <code>CSSValue</code>
20: * interface shall be <code>CSS_CUSTOM</code> .
21: * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
22: * @since DOM Level 2
23: */
24: public interface CSS2TextShadow extends CSSValue {
25: /**
26: * Specifies the color of the text shadow. The CSS Value can contain an
27: * empty string if no color has been specified.
28: */
29: public CSSValue getColor();
30:
31: /**
32: * The horizontal position of the text shadow. <code>0</code> if no
33: * length has been specified.
34: */
35: public CSSValue getHorizontal();
36:
37: /**
38: * The vertical position of the text shadow. <code>0</code> if no length
39: * has been specified.
40: */
41: public CSSValue getVertical();
42:
43: /**
44: * The blur radius of the text shadow. <code>0</code> if no length has
45: * been specified.
46: */
47: public CSSValue getBlur();
48:
49: }
|