KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > xml > dom > html > HTMLAreaElementImpl


1 /**
2  * org/ozone-db/xml/dom/html/HTMLAreaElementImpl.java
3  *
4  * The contents of this file are subject to the OpenXML Public
5  * License Version 1.0; you may not use this file except in compliance
6  * with the License. You may obtain a copy of the License at
7  * http://www.openxml.org/license.html
8  *
9  * THIS SOFTWARE IS DISTRIBUTED ON AN "AS IS" BASIS WITHOUT WARRANTY
10  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED. THE INITIAL DEVELOPER
11  * AND ALL CONTRIBUTORS SHALL NOT BE LIABLE FOR ANY DAMAGES AS A
12  * RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
13  * DERIVATIVES. SEE THE LICENSE FOR THE SPECIFIC LANGUAGE GOVERNING
14  * RIGHTS AND LIMITATIONS UNDER THE LICENSE.
15  *
16  * The Initial Developer of this code under the License is Assaf Arkin.
17  * Portions created by Assaf Arkin are Copyright (C) 1998, 1999.
18  * All Rights Reserved.
19  */

20
21 package org.ozoneDB.xml.dom.html;
22
23 import org.ozoneDB.xml.dom.ElementImpl;
24 import org.w3c.dom.html.HTMLAreaElement;
25
26
27 /**
28  * @version $Revision: 1.2 $ $Date: 2003/11/20 23:18:42 $
29  * @author <a HREF="mailto:arkin@trendline.co.il">Assaf Arkin</a>
30  * @see org.w3c.dom.html.HTMLAreaElement
31  * @see ElementImpl
32  */

33 public final class HTMLAreaElementImpl extends HTMLElementImpl implements HTMLAreaElement {
34
35
36     public String JavaDoc getAccessKey() {
37         String JavaDoc accessKey;
38
39         // Make sure that the access key is a single character.
40
accessKey = getAttribute( "accesskey" );
41         if (accessKey != null && accessKey.length() > 1) {
42             accessKey = accessKey.substring( 0, 1 );
43         }
44         return accessKey;
45     }
46
47
48     public void setAccessKey( String JavaDoc accessKey ) {
49         // Make sure that the access key is a single character.
50
if (accessKey != null && accessKey.length() > 1) {
51             accessKey = accessKey.substring( 0, 1 );
52         }
53         setAttribute( "accesskey", accessKey );
54     }
55
56
57     public String JavaDoc getAlt() {
58         return getAttribute( "alt" );
59     }
60
61
62     public void setAlt( String JavaDoc alt ) {
63         setAttribute( "alt", alt );
64     }
65
66
67     public String JavaDoc getCoords() {
68         return getAttribute( "coords" );
69     }
70
71
72     public void setCoords( String JavaDoc coords ) {
73         setAttribute( "coords", coords );
74     }
75
76
77     public String JavaDoc getHref() {
78         return getAttribute( "href" );
79     }
80
81
82     public void setHref( String JavaDoc href ) {
83         setAttribute( "href", href );
84     }
85
86
87     public boolean getNoHref() {
88         return getAttribute( "href" ) != null;
89     }
90
91
92     public void setNoHref( boolean noHref ) {
93         setAttribute( "nohref", noHref ? "" : null );
94     }
95
96
97     public String JavaDoc getShape() {
98         return capitalize( getAttribute( "shape" ) );
99     }
100
101
102     public void setShape( String JavaDoc shape ) {
103         setAttribute( "shape", shape );
104     }
105
106
107     public int getTabIndex() {
108         return toInteger( getAttribute( "tabindex" ) );
109     }
110
111
112     public void setTabIndex( int tabIndex ) {
113         setAttribute( "tabindex", String.valueOf( tabIndex ) );
114     }
115
116
117     public String JavaDoc getTarget() {
118         return getAttribute( "target" );
119     }
120
121
122     public void setTarget( String JavaDoc target ) {
123         setAttribute( "target", target );
124     }
125
126
127     /**
128      * Constructor requires owner document.
129      *
130      * @param owner The owner HTML document
131      */

132     public HTMLAreaElementImpl( HTMLDocumentImpl owner, String JavaDoc name ) {
133         super( owner, "AREA" );
134     }
135
136 }
137
Popular Tags