summaryrefslogtreecommitdiff
path: root/external/jaxp/source/org/w3c/dom/css/CSS2Azimuth.java
blob: de9016ec02f0b75f11c1965092746312134529f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * Copyright (c) 2000 World Wide Web Consortium,
 * (Massachusetts Institute of Technology, Institut National de
 * Recherche en Informatique et en Automatique, Keio University). All
 * Rights Reserved. This program is distributed under the W3C's Software
 * Intellectual Property License. This program is distributed in the
 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
 * details.
 */

package org.w3c.dom.css;

import org.w3c.dom.DOMException;

/**
 *  The <code>CSS2Azimuth</code> interface represents the  azimuth CSS Level 2 
 * property.
 * <p> For this extension of the <code>CSSValue</code> interface, the 
 * <code>valueType</code> attribute of the underlying <code>CSSValue</code> 
 * interface shall be <code>CSS_CUSTOM</code> . 
 * <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>.
 * @since DOM Level 2
 */
public interface CSS2Azimuth extends CSSValue {
    /**
     *  A code defining the type of the value as defined in 
     * <code>CSSValue</code> . It would be one of <code>CSS_DEG</code> , 
     * <code>CSS_RAD</code> , <code>CSS_GRAD</code> or <code>CSS_IDENT</code> 
     * .
     */
    public short getAzimuthType();

    /**
     *  If <code>azimuthType</code> is <code>CSS_IDENT</code> , 
     * <code>identifier</code> contains one of left-side, far-left, left, 
     * center-left, center, center-right, right, far-right, right-side, 
     * leftwards, rightwards. The empty string if none is set.
     */
    public String getIdentifier();

    /**
     * <code>behind</code> indicates whether the behind identifier has been 
     * set.
     */
    public boolean getBehind();

    /**
     *  A method to set the angle value with a specified unit. This method 
     * will unset any previously set identifier value.
     * @param uType  The unitType could only be one of <code>CSS_DEG</code> , 
     *   <code>CSS_RAD</code> or <code>CSS_GRAD</code> ).
     * @param fValue  The new float value of the angle.
     * @exception DOMException
     *    INVALID_ACCESS_ERR: Raised if the unit type is invalid.
     *   <br> NO_MODIFICATION_ALLOWED_ERR: Raised if this property is 
     *   readonly.
     */
    public void setAngleValue(short uType, 
                              float fValue)
                              throws DOMException;

    /**
     *  Used to retrieved the float value of the azimuth property.
     * @param uType  The unit type can be only an angle unit type (
     *   <code>CSS_DEG</code> , <code>CSS_RAD</code> or <code>CSS_GRAD</code> 
     *   ).
     * @return  The float value.
     * @exception DOMException
     *    INVALID_ACCESS_ERR: Raised if the unit type is invalid.
     */
    public float getAngleValue(short uType)
                               throws DOMException;

    /**
     *  Setting the identifier for the azimuth property will unset any 
     * previously set angle value. The value of <code>azimuthType</code> is 
     * set to <code>CSS_IDENT</code>
     * @param ident  The new identifier. If the identifier is "leftwards" or 
     *   "rightward", the behind attribute is ignored.
     * @param b  The new value for behind.
     * @exception DOMException
     *    SYNTAX_ERR: Raised if the specified <code>identifier</code> has a 
     *   syntax error and is unparsable.
     *   <br> NO_MODIFICATION_ALLOWED_ERR: Raised if this property is 
     *   readonly.
     */
    public void setIdentifier(String ident, 
                              boolean b)
                              throws DOMException;

}