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>Isindex</b> is generated from xhtml.rng by Relaxer.
045: * This class is derived from:
046: *
047: * <!-- for programmer
048: * <element name="isindex">
049: * <ref name="isindex.attlist"/>
050: * </element>-->
051: * <!-- for javadoc -->
052: * <pre> <element name="isindex">
053: * <ref name="isindex.attlist"/>
054: * </element></pre>
055: *
056: * @version xhtml.rng (Tue Apr 20 01:31:08 PDT 2004)
057: * @author Relaxer 1.1b (http://www.relaxer.org)
058: */
059: public class Isindex {
060: public static final String DIR_LTR = "ltr";
061: public static final String DIR_RTL = "rtl";
062: private String id_;
063: private String classValue_;
064: private String title_;
065: private String style_;
066: private String xmlLang_;
067: private String lang_;
068: private String dir_;
069: private String prompt_;
070:
071: /**
072: * Creates a <code>Isindex</code>.
073: *
074: */
075: public Isindex() {
076: }
077:
078: /**
079: * Gets the String property <b>id</b>.
080: *
081: * @return String
082: */
083: public String getId() {
084: return (id_);
085: }
086:
087: /**
088: * Sets the String property <b>id</b>.
089: *
090: * @param id
091: */
092: public void setId(String id) {
093: this .id_ = id;
094: }
095:
096: /**
097: * Gets the String property <b>classValue</b>.
098: *
099: * @return String
100: */
101: public String getClassValue() {
102: return classValue_;
103: }
104:
105: /**
106: * Sets the String property <b>classValue</b>.
107: *
108: * @param classValue
109: */
110: public void setClassValue(String classValue) {
111: this .classValue_ = classValue;
112: }
113:
114: /**
115: * Gets the String property <b>title</b>.
116: *
117: * @return String
118: */
119: public String getTitle() {
120: return (title_);
121: }
122:
123: /**
124: * Sets the String property <b>title</b>.
125: *
126: * @param title
127: */
128: public void setTitle(String title) {
129: this .title_ = title;
130: }
131:
132: /**
133: * Gets the String property <b>style</b>.
134: *
135: * @return String
136: */
137: public String getStyle() {
138: return (style_);
139: }
140:
141: /**
142: * Sets the String property <b>style</b>.
143: *
144: * @param style
145: */
146: public void setStyle(String style) {
147: this .style_ = style;
148: }
149:
150: /**
151: * Gets the java.util.Locale property <b>xmlLang</b>.
152: *
153: * @return java.util.Locale
154: */
155: public String getXmlLang() {
156: return (xmlLang_);
157: }
158:
159: /**
160: * Sets the java.util.Locale property <b>xmlLang</b>.
161: *
162: * @param xmlLang
163: */
164: public void setXmlLang(String xmlLang) {
165: this .xmlLang_ = xmlLang;
166: }
167:
168: /**
169: * Gets the java.util.Locale property <b>lang</b>.
170: *
171: * @return java.util.Locale
172: */
173: public String getLang() {
174: return (lang_);
175: }
176:
177: /**
178: * Sets the java.util.Locale property <b>lang</b>.
179: *
180: * @param lang
181: */
182: public void setLang(String lang) {
183: this .lang_ = lang;
184: }
185:
186: /**
187: * Gets the String property <b>dir</b>.
188: *
189: * @return String
190: */
191: public String getDir() {
192: return (dir_);
193: }
194:
195: /**
196: * Sets the String property <b>dir</b>.
197: *
198: * @param dir
199: */
200: public void setDir(String dir) {
201: this .dir_ = dir;
202: }
203:
204: /**
205: * Gets the String property <b>prompt</b>.
206: *
207: * @return String
208: */
209: public String getPrompt() {
210: return (prompt_);
211: }
212:
213: /**
214: * Sets the String property <b>prompt</b>.
215: *
216: * @param prompt
217: */
218: public void setPrompt(String prompt) {
219: this.prompt_ = prompt;
220: }
221: }
|