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>FramesetFrameset</b> is generated from xhtml.rng by Relaxer.
045: * This class is derived from:
046: *
047: * <!-- for programmer
048: * <element name="frameset">
049: * <ref name="frameset.attlist"/>
050: * <interleave>
051: * <oneOrMore>
052: * <choice>
053: * <ref name="frameset"/>
054: * <ref name="frame"/>
055: * </choice>
056: * </oneOrMore>
057: * <optional>
058: * <ref name="noframes"/>
059: * </optional>
060: * </interleave>
061: * </element>-->
062: * <!-- for javadoc -->
063: * <pre> <element name="frameset">
064: * <ref name="frameset.attlist"/>
065: * <interleave>
066: * <oneOrMore>
067: * <choice>
068: * <ref name="frameset"/>
069: * <ref name="frame"/>
070: * </choice>
071: * </oneOrMore>
072: * <optional>
073: * <ref name="noframes"/>
074: * </optional>
075: * </interleave>
076: * </element></pre>
077: *
078: * @version xhtml.rng (Tue Apr 20 01:31:09 PDT 2004)
079: * @author Relaxer 1.1b (http://www.relaxer.org)
080: */
081: public class FramesetFrameset {
082: private String id_;
083: private String classValue_;
084: private String title_;
085: private String style_;
086: private String cols_;
087: private String rows_;
088:
089: /**
090: * Creates a <code>FramesetFrameset</code>.
091: *
092: */
093: public FramesetFrameset() {
094: }
095:
096: /**
097: * Gets the String property <b>id</b>.
098: *
099: * @return String
100: */
101: public String getId() {
102: return (id_);
103: }
104:
105: /**
106: * Sets the String property <b>id</b>.
107: *
108: * @param id
109: */
110: public void setId(String id) {
111: this .id_ = id;
112: }
113:
114: /**
115: * Gets the String property <b>classValue</b>.
116: *
117: * @return String
118: */
119: public String getClassValue() {
120: return classValue_;
121: }
122:
123: /**
124: * Sets the String property <b>classValue</b>.
125: *
126: * @param classValue
127: */
128: public void setClassValue(String classValue) {
129: this .classValue_ = classValue;
130: }
131:
132: /**
133: * Gets the String property <b>title</b>.
134: *
135: * @return String
136: */
137: public String getTitle() {
138: return (title_);
139: }
140:
141: /**
142: * Sets the String property <b>title</b>.
143: *
144: * @param title
145: */
146: public void setTitle(String title) {
147: this .title_ = title;
148: }
149:
150: /**
151: * Gets the String property <b>style</b>.
152: *
153: * @return String
154: */
155: public String getStyle() {
156: return (style_);
157: }
158:
159: /**
160: * Sets the String property <b>style</b>.
161: *
162: * @param style
163: */
164: public void setStyle(String style) {
165: this .style_ = style;
166: }
167:
168: /**
169: * Gets the String property <b>cols</b>.
170: *
171: * @return String
172: */
173: public String getCols() {
174: return (cols_);
175: }
176:
177: /**
178: * Sets the String property <b>cols</b>.
179: *
180: * @param cols
181: */
182: public void setCols(String cols) {
183: this .cols_ = cols;
184: }
185:
186: /**
187: * Gets the String property <b>rows</b>.
188: *
189: * @return String
190: */
191: public String getRows() {
192: return (rows_);
193: }
194:
195: /**
196: * Sets the String property <b>rows</b>.
197: *
198: * @param rows
199: */
200: public void setRows(String rows) {
201: this.rows_ = rows;
202: }
203: }
|