KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * org/ozone-db/xml/dom/html/HTMLBlockquoteElementImpl.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
25
26 /**
27  * @version $Revision: 1.2 $ $Date: 2003/11/20 23:18:42 $
28  * @author <a HREF="mailto:arkin@trendline.co.il">Assaf Arkin</a>
29  * @see ElementImpl
30  * was originallly implementing HTMLBlockquoteElement
31  */

32 public final class HTMLBlockquoteElementImpl extends HTMLElementImpl {
33
34
35     public String JavaDoc getCite() {
36         return getAttribute( "cite" );
37     }
38
39
40     public void setCite( String JavaDoc cite ) {
41         setAttribute( "cite", cite );
42     }
43
44
45     /**
46      * Constructor requires owner document.
47      *
48      * @param owner The owner HTML document
49      */

50     public HTMLBlockquoteElementImpl( HTMLDocumentImpl owner, String JavaDoc name ) {
51         super( owner, "BLOCKQUOTE" );
52     }
53
54 }
55
Popular Tags