KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > a > p


1 /*
2  * ====================================================================
3  *
4  * The Apache Software License, Version 1.1
5  *
6  * Copyright (c) 1999-2003 The Apache Software Foundation. All rights
7  * reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  * notice, this list of conditions and the following disclaimer in
18  * the documentation and/or other materials provided with the
19  * distribution.
20  *
21  * 3. The end-user documentation included with the redistribution, if
22  * any, must include the following acknowlegement:
23  * "This product includes software developed by the
24  * Apache Software Foundation (http://www.apache.org/)."
25  * Alternately, this acknowlegement may appear in the software itself,
26  * if and wherever such third-party acknowlegements normally appear.
27  *
28  * 4. The names "The Jakarta Project", "Jakarta Element Construction Set",
29  * "Jakarta ECS" , and "Apache Software Foundation" must not be used
30  * to endorse or promote products derived
31  * from this software without prior written permission. For written
32  * permission, please contact apache@apache.org.
33  *
34  * 5. Products derived from this software may not be called "Apache",
35  * "Jakarta Element Construction Set" nor "Jakarta ECS" nor may "Apache"
36  * appear in their names without prior written permission of the Apache Group.
37  *
38  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
39  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
40  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
41  * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
42  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
44  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
45  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
46  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
47  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
48  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49  * SUCH DAMAGE.
50  * ====================================================================
51  *
52  * This software consists of voluntary contributions made by many
53  * individuals on behalf of the Apache Software Foundation. For more
54  * information on the Apache Software Foundation, please see
55  * <http://www.apache.org/>.
56  *
57  */

58 package org.apache.ecs.xhtml;
59
60 import org.apache.ecs.*;
61
62 /**
63     This class creates a &lt;p&gt; tag.
64     <P>
65     The HTML &lt;P&gt; tag defaults to not having a closing &lt;/P&gt;
66     because it is optional in the spec. In XHTML this is not allowed, so
67     ending &lt;/p&gt; is enforced.
68
69     @version $Id: p.java,v 1.2 2003/04/27 09:38:05 rdonkin Exp $
70     @author <a HREF="mailto:snagy@servletapi.com">Stephan Nagy</a>
71     @author <a HREF="mailto:jon@clearink.com">Jon S. Stevens</a>
72     @author <a HREF="mailto:bojan@binarix.com">Bojan Smojver</a>
73 */

74 public class p extends MultiPartElement implements Printable, MouseEvents, KeyEvents
75 {
76     /**
77         Private initialization routine.
78     */

79     {
80         setElementType("p");
81         setCase(LOWERCASE);
82         setAttributeQuote(true);
83     }
84     /**
85         Basic constructor. You need to set the attributes using the
86         set* methods.
87     */

88     public p()
89     {
90     }
91
92     /**
93         Use the set* methods to set the values
94         of the attributes.
95
96         @param align set the value of align=""
97     */

98     public p(String JavaDoc align)
99     {
100         setAlign(align);
101     }
102
103     /**
104         Use the set* methods to set the values
105         of the attributes.
106
107         @param align set the value of align=""
108         @param value set the text after the &lt;P&gt; tag
109     */

110     public p(String JavaDoc value, String JavaDoc align)
111     {
112         setAlign(align);
113         addElement(value);
114     }
115
116     /**
117         Sets the align="" attribute
118         @param align the align="" attribute
119     */

120     public p setAlign(String JavaDoc align)
121     {
122         addAttribute("align",align);
123         return this;
124     }
125
126     /**
127         Sets the lang="" and xml:lang="" attributes
128         @param lang the lang="" and xml:lang="" attributes
129     */

130     public Element setLang(String JavaDoc lang)
131     {
132         addAttribute("lang",lang);
133         addAttribute("xml:lang",lang);
134         return this;
135     }
136
137     /**
138         Adds an Element to the element.
139         @param hashcode name of element for hash table
140         @param element Adds an Element to the element.
141      */

142     public p addElement(String JavaDoc hashcode,Element element)
143     {
144         addElementToRegistry(hashcode,element);
145         return(this);
146     }
147
148     /**
149         Adds an Element to the element.
150         @param hashcode name of element for hash table
151         @param element Adds an Element to the element.
152      */

153     public p addElement(String JavaDoc hashcode,String JavaDoc element)
154     {
155         addElementToRegistry(hashcode,element);
156         return(this);
157     }
158     /**
159         Adds an Element to the element.
160         @param element Adds an Element to the element.
161      */

162     public p addElement(Element element)
163     {
164         addElementToRegistry(element);
165         return(this);
166     }
167
168     /**
169         Adds an Element to the element.
170         @param element Adds an Element to the element.
171      */

172     public p addElement(String JavaDoc element)
173     {
174         addElementToRegistry(element);
175         return(this);
176     }
177     /**
178         Removes an Element from the element.
179         @param hashcode the name of the element to be removed.
180     */

181     public p removeElement(String JavaDoc hashcode)
182     {
183         removeElementFromRegistry(hashcode);
184         return(this);
185     }
186
187     /**
188         The onclick event occurs when the pointing device button is clicked
189         over an element. This attribute may be used with most elements.
190         
191         @param The script
192     */

193     public void setOnClick(String JavaDoc script)
194     {
195         addAttribute ( "onclick", script );
196     }
197     /**
198         The ondblclick event occurs when the pointing device button is double
199         clicked over an element. This attribute may be used with most elements.
200
201         @param The script
202     */

203     public void setOnDblClick(String JavaDoc script)
204     {
205         addAttribute ( "ondblclick", script );
206     }
207     /**
208         The onmousedown event occurs when the pointing device button is pressed
209         over an element. This attribute may be used with most elements.
210
211         @param The script
212     */

213     public void setOnMouseDown(String JavaDoc script)
214     {
215         addAttribute ( "onmousedown", script );
216     }
217     /**
218         The onmouseup event occurs when the pointing device button is released
219         over an element. This attribute may be used with most elements.
220
221         @param The script
222     */

223     public void setOnMouseUp(String JavaDoc script)
224     {
225         addAttribute ( "onmouseup", script );
226     }
227     /**
228         The onmouseover event occurs when the pointing device is moved onto an
229         element. This attribute may be used with most elements.
230
231         @param The script
232     */

233     public void setOnMouseOver(String JavaDoc script)
234     {
235         addAttribute ( "onmouseover", script );
236     }
237     /**
238         The onmousemove event occurs when the pointing device is moved while it
239         is over an element. This attribute may be used with most elements.
240
241         @param The script
242     */

243     public void setOnMouseMove(String JavaDoc script)
244     {
245         addAttribute ( "onmousemove", script );
246     }
247     /**
248         The onmouseout event occurs when the pointing device is moved away from
249         an element. This attribute may be used with most elements.
250
251         @param The script
252     */

253     public void setOnMouseOut(String JavaDoc script)
254     {
255         addAttribute ( "onmouseout", script );
256     }
257
258     /**
259         The onkeypress event occurs when a key is pressed and released over an
260         element. This attribute may be used with most elements.
261         
262         @param The script
263     */

264     public void setOnKeyPress(String JavaDoc script)
265     {
266         addAttribute ( "onkeypress", script );
267     }
268
269     /**
270         The onkeydown event occurs when a key is pressed down over an element.
271         This attribute may be used with most elements.
272         
273         @param The script
274     */

275     public void setOnKeyDown(String JavaDoc script)
276     {
277         addAttribute ( "onkeydown", script );
278     }
279
280     /**
281         The onkeyup event occurs when a key is released over an element. This
282         attribute may be used with most elements.
283         
284         @param The script
285     */

286     public void setOnKeyUp(String JavaDoc script)
287     {
288         addAttribute ( "onkeyup", script );
289     }
290 }
291
Popular Tags