001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.modules.visualweb.xhtml;
042:
043: /**
044: * <b>Blockquote</b> is generated from xhtml.rng by Relaxer.
045: * This class is derived from:
046: *
047: * <!-- for programmer
048: * <element name="blockquote">
049: * <ref name="blockquote.attlist"/>
050: * <ref name="Block.model"/>
051: * </element>-->
052: * <!-- for javadoc -->
053: * <pre> <element name="blockquote">
054: * <ref name="blockquote.attlist"/>
055: * <ref name="Block.model"/>
056: * </element></pre>
057: *
058: * @version xhtml.rng (Tue Apr 20 01:31:08 PDT 2004)
059: * @author Relaxer 1.1b (http://www.relaxer.org)
060: */
061: public class Blockquote {
062: public static final String DIR_LTR = "ltr";
063: public static final String DIR_RTL = "rtl";
064: private String id_;
065: private String classValue_;
066: private String title_;
067: private String style_;
068: private String xmlLang_;
069: private String lang_;
070: private String dir_;
071: private String onclick_;
072: private String ondblclick_;
073: private String onmousedown_;
074: private String onmouseup_;
075: private String onmouseover_;
076: private String onmousemove_;
077: private String onmouseout_;
078: private String onkeypress_;
079: private String onkeydown_;
080: private String onkeyup_;
081: private String cite_;
082:
083: /**
084: * Creates a <code>Blockquote</code>.
085: *
086: */
087: public Blockquote() {
088: }
089:
090: /**
091: * Gets the String property <b>id</b>.
092: *
093: * @return String
094: */
095: public String getId() {
096: return (id_);
097: }
098:
099: /**
100: * Sets the String property <b>id</b>.
101: *
102: * @param id
103: */
104: public void setId(String id) {
105: this .id_ = id;
106: }
107:
108: /**
109: * Gets the String property <b>classValue</b>.
110: *
111: * @return String
112: */
113: public String getStyleClass() {
114: return classValue_;
115: }
116:
117: /**
118: * Sets the String property <b>classValue</b>.
119: *
120: * @param classValue
121: */
122: public void setStyleClass(String classValue) {
123: this .classValue_ = classValue;
124: }
125:
126: /**
127: * Gets the String property <b>title</b>.
128: *
129: * @return String
130: */
131: public String getTitle() {
132: return (title_);
133: }
134:
135: /**
136: * Sets the String property <b>title</b>.
137: *
138: * @param title
139: */
140: public void setTitle(String title) {
141: this .title_ = title;
142: }
143:
144: /**
145: * Gets the String property <b>style</b>.
146: *
147: * @return String
148: */
149: public String getStyle() {
150: return (style_);
151: }
152:
153: /**
154: * Sets the String property <b>style</b>.
155: *
156: * @param style
157: */
158: public void setStyle(String style) {
159: this .style_ = style;
160: }
161:
162: /**
163: * Gets the java.util.Locale property <b>xmlLang</b>.
164: *
165: * @return java.util.Locale
166: */
167: public String getXmlLang() {
168: return (xmlLang_);
169: }
170:
171: /**
172: * Sets the java.util.Locale property <b>xmlLang</b>.
173: *
174: * @param xmlLang
175: */
176: public void setXmlLang(String xmlLang) {
177: this .xmlLang_ = xmlLang;
178: }
179:
180: /**
181: * Gets the java.util.Locale property <b>lang</b>.
182: *
183: * @return java.util.Locale
184: */
185: public String getLang() {
186: return (lang_);
187: }
188:
189: /**
190: * Sets the java.util.Locale property <b>lang</b>.
191: *
192: * @param lang
193: */
194: public void setLang(String lang) {
195: this .lang_ = lang;
196: }
197:
198: /**
199: * Gets the String property <b>dir</b>.
200: *
201: * @return String
202: */
203: public String getDir() {
204: return (dir_);
205: }
206:
207: /**
208: * Sets the String property <b>dir</b>.
209: *
210: * @param dir
211: */
212: public void setDir(String dir) {
213: this .dir_ = dir;
214: }
215:
216: /**
217: * Gets the String property <b>onclick</b>.
218: *
219: * @return String
220: */
221: public String getOnclick() {
222: return (onclick_);
223: }
224:
225: /**
226: * Sets the String property <b>onclick</b>.
227: *
228: * @param onclick
229: */
230: public void setOnclick(String onclick) {
231: this .onclick_ = onclick;
232: }
233:
234: /**
235: * Gets the String property <b>ondblclick</b>.
236: *
237: * @return String
238: */
239: public String getOndblclick() {
240: return (ondblclick_);
241: }
242:
243: /**
244: * Sets the String property <b>ondblclick</b>.
245: *
246: * @param ondblclick
247: */
248: public void setOndblclick(String ondblclick) {
249: this .ondblclick_ = ondblclick;
250: }
251:
252: /**
253: * Gets the String property <b>onmousedown</b>.
254: *
255: * @return String
256: */
257: public String getOnmousedown() {
258: return (onmousedown_);
259: }
260:
261: /**
262: * Sets the String property <b>onmousedown</b>.
263: *
264: * @param onmousedown
265: */
266: public void setOnmousedown(String onmousedown) {
267: this .onmousedown_ = onmousedown;
268: }
269:
270: /**
271: * Gets the String property <b>onmouseup</b>.
272: *
273: * @return String
274: */
275: public String getOnmouseup() {
276: return (onmouseup_);
277: }
278:
279: /**
280: * Sets the String property <b>onmouseup</b>.
281: *
282: * @param onmouseup
283: */
284: public void setOnmouseup(String onmouseup) {
285: this .onmouseup_ = onmouseup;
286: }
287:
288: /**
289: * Gets the String property <b>onmouseover</b>.
290: *
291: * @return String
292: */
293: public String getOnmouseover() {
294: return (onmouseover_);
295: }
296:
297: /**
298: * Sets the String property <b>onmouseover</b>.
299: *
300: * @param onmouseover
301: */
302: public void setOnmouseover(String onmouseover) {
303: this .onmouseover_ = onmouseover;
304: }
305:
306: /**
307: * Gets the String property <b>onmousemove</b>.
308: *
309: * @return String
310: */
311: public String getOnmousemove() {
312: return (onmousemove_);
313: }
314:
315: /**
316: * Sets the String property <b>onmousemove</b>.
317: *
318: * @param onmousemove
319: */
320: public void setOnmousemove(String onmousemove) {
321: this .onmousemove_ = onmousemove;
322: }
323:
324: /**
325: * Gets the String property <b>onmouseout</b>.
326: *
327: * @return String
328: */
329: public String getOnmouseout() {
330: return (onmouseout_);
331: }
332:
333: /**
334: * Sets the String property <b>onmouseout</b>.
335: *
336: * @param onmouseout
337: */
338: public void setOnmouseout(String onmouseout) {
339: this .onmouseout_ = onmouseout;
340: }
341:
342: /**
343: * Gets the String property <b>onkeypress</b>.
344: *
345: * @return String
346: */
347: public String getOnkeypress() {
348: return (onkeypress_);
349: }
350:
351: /**
352: * Sets the String property <b>onkeypress</b>.
353: *
354: * @param onkeypress
355: */
356: public void setOnkeypress(String onkeypress) {
357: this .onkeypress_ = onkeypress;
358: }
359:
360: /**
361: * Gets the String property <b>onkeydown</b>.
362: *
363: * @return String
364: */
365: public String getOnkeydown() {
366: return (onkeydown_);
367: }
368:
369: /**
370: * Sets the String property <b>onkeydown</b>.
371: *
372: * @param onkeydown
373: */
374: public void setOnkeydown(String onkeydown) {
375: this .onkeydown_ = onkeydown;
376: }
377:
378: /**
379: * Gets the String property <b>onkeyup</b>.
380: *
381: * @return String
382: */
383: public String getOnkeyup() {
384: return (onkeyup_);
385: }
386:
387: /**
388: * Sets the String property <b>onkeyup</b>.
389: *
390: * @param onkeyup
391: */
392: public void setOnkeyup(String onkeyup) {
393: this .onkeyup_ = onkeyup;
394: }
395:
396: /**
397: * Gets the String property <b>cite</b>.
398: *
399: * @return String
400: */
401: public String getCite() {
402: return (cite_);
403: }
404:
405: /**
406: * Sets the String property <b>cite</b>.
407: *
408: * @param cite
409: */
410: public void setCite(String cite) {
411: this.cite_ = cite;
412: }
413: }
|