001: /*
002: * Copyright (c) 2002-2008 Gargoyle Software Inc. All rights reserved.
003: *
004: * Redistribution and use in source and binary forms, with or without
005: * modification, are permitted provided that the following conditions are met:
006: *
007: * 1. Redistributions of source code must retain the above copyright notice,
008: * this list of conditions and the following disclaimer.
009: * 2. Redistributions in binary form must reproduce the above copyright notice,
010: * this list of conditions and the following disclaimer in the documentation
011: * and/or other materials provided with the distribution.
012: * 3. The end-user documentation included with the redistribution, if any, must
013: * include the following acknowledgment:
014: *
015: * "This product includes software developed by Gargoyle Software Inc.
016: * (http://www.GargoyleSoftware.com/)."
017: *
018: * Alternately, this acknowledgment may appear in the software itself, if
019: * and wherever such third-party acknowledgments normally appear.
020: * 4. The name "Gargoyle Software" must not be used to endorse or promote
021: * products derived from this software without prior written permission.
022: * For written permission, please contact info@GargoyleSoftware.com.
023: * 5. Products derived from this software may not be called "HtmlUnit", nor may
024: * "HtmlUnit" appear in their name, without prior written permission of
025: * Gargoyle Software Inc.
026: *
027: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
028: * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
029: * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARGOYLE
030: * SOFTWARE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
031: * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
032: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
033: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
034: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
035: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
036: * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
037: */
038: package com.gargoylesoftware.htmlunit.html;
039:
040: import java.util.Map;
041:
042: /**
043: * Wrapper for the html element "legend".
044: *
045: * @version $Revision: 2132 $
046: * @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
047: * @author David K. Taylor
048: * @author <a href="mailto:cse@dynabean.de">Christian Sell</a>
049: * @author Ahmed Ashour
050: */
051: public class HtmlLegend extends ClickableElement {
052:
053: private static final long serialVersionUID = -3143196346930065671L;
054:
055: /** the HTML tag represented by this element */
056: public static final String TAG_NAME = "legend";
057:
058: /**
059: * Create an instance of HtmlLegend
060: *
061: * @param page The HtmlPage that contains this element.
062: * @param attributes the initial attributes
063: * @deprecated You should not directly construct HtmlLegend.
064: */
065: //TODO: to be removed, deprecated after 1.11
066: public HtmlLegend(final HtmlPage page, final Map attributes) {
067: this (null, TAG_NAME, page, attributes);
068: }
069:
070: /**
071: * Create an instance of HtmlLegend
072: *
073: * @param namespaceURI the URI that identifies an XML namespace.
074: * @param qualifiedName The qualified name of the element type to instantiate
075: * @param page The HtmlPage that contains this element.
076: * @param attributes the initial attributes
077: */
078: HtmlLegend(final String namespaceURI, final String qualifiedName,
079: final HtmlPage page, final Map attributes) {
080: super (namespaceURI, qualifiedName, page, attributes);
081: }
082:
083: /**
084: * Return the value of the attribute "accesskey". Refer to the
085: * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
086: * documentation for details on the use of this attribute.
087: *
088: * @return The value of the attribute "accesskey"
089: * or an empty string if that attribute isn't defined.
090: */
091: public final String getAccessKeyAttribute() {
092: return getAttributeValue("accesskey");
093: }
094:
095: /**
096: * Return the value of the attribute "align". Refer to the
097: * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
098: * documentation for details on the use of this attribute.
099: *
100: * @return The value of the attribute "align"
101: * or an empty string if that attribute isn't defined.
102: */
103: public final String getAlignAttribute() {
104: return getAttributeValue("align");
105: }
106: }
|