001: /*
002: * Java HTML Tidy - JTidy
003: * HTML parser and pretty printer
004: *
005: * Copyright (c) 1998-2000 World Wide Web Consortium (Massachusetts
006: * Institute of Technology, Institut National de Recherche en
007: * Informatique et en Automatique, Keio University). All Rights
008: * Reserved.
009: *
010: * Contributing Author(s):
011: *
012: * Dave Raggett <dsr@w3.org>
013: * Andy Quick <ac.quick@sympatico.ca> (translation to Java)
014: * Gary L Peskin <garyp@firstech.com> (Java development)
015: * Sami Lempinen <sami@lempinen.net> (release management)
016: * Fabrizio Giustina <fgiust at users.sourceforge.net>
017: *
018: * The contributing author(s) would like to thank all those who
019: * helped with testing, bug fixes, and patience. This wouldn't
020: * have been possible without all of you.
021: *
022: * COPYRIGHT NOTICE:
023: *
024: * This software and documentation is provided "as is," and
025: * the copyright holders and contributing author(s) make no
026: * representations or warranties, express or implied, including
027: * but not limited to, warranties of merchantability or fitness
028: * for any particular purpose or that the use of the software or
029: * documentation will not infringe any third party patents,
030: * copyrights, trademarks or other rights.
031: *
032: * The copyright holders and contributing author(s) will not be
033: * liable for any direct, indirect, special or consequential damages
034: * arising out of any use of the software or documentation, even if
035: * advised of the possibility of such damage.
036: *
037: * Permission is hereby granted to use, copy, modify, and distribute
038: * this source code, or portions hereof, documentation and executables,
039: * for any purpose, without fee, subject to the following restrictions:
040: *
041: * 1. The origin of this source code must not be misrepresented.
042: * 2. Altered versions must be plainly marked as such and must
043: * not be misrepresented as being the original source.
044: * 3. This Copyright notice may not be removed or altered from any
045: * source or altered source distribution.
046: *
047: * The copyright holders and contributing author(s) specifically
048: * permit, without fee, and encourage the use of this source code
049: * as a component for supporting the Hypertext Markup Language in
050: * commercial products. If you use this source code in a product,
051: * acknowledgment is not required but would be appreciated.
052: *
053: */
054: package org.w3c.tidy;
055:
056: /**
057: * HTML attribute.
058: * @author Dave Raggett <a href="mailto:dsr@w3.org">dsr@w3.org </a>
059: * @author Andy Quick <a href="mailto:ac.quick@sympatico.ca">ac.quick@sympatico.ca </a> (translation to Java)
060: * @author Fabrizio Giustina
061: * @version $Revision: 1.7 $ ($Author: fgiust $)
062: */
063: public class Attribute {
064:
065: /**
066: * attribute name.
067: */
068: private String name;
069:
070: /**
071: * don't wrap attribute.
072: */
073: private boolean nowrap;
074:
075: /**
076: * unmodifiable attribute?
077: */
078: private boolean literal;
079:
080: /**
081: * html versions for this attribute.
082: */
083: private short versions;
084:
085: /**
086: * checker for the attribute.
087: */
088: private AttrCheck attrchk;
089:
090: /**
091: * Instantiates a new Attribute.
092: * @param attributeName attribute name
093: * @param htmlVersions versions in which this attribute is supported
094: * @param check AttrCheck instance
095: */
096: public Attribute(String attributeName, short htmlVersions,
097: AttrCheck check) {
098: this .name = attributeName;
099: this .versions = htmlVersions;
100: this .attrchk = check;
101: }
102:
103: /**
104: * Is this a literal (unmodifiable) attribute?
105: * @param isLiteral boolean <code>true</code> for a literal attribute
106: */
107: public void setLiteral(boolean isLiteral) {
108: this .literal = isLiteral;
109: }
110:
111: /**
112: * Don't wrap this attribute?
113: * @param isNowrap boolean <code>true</code>= don't wrap
114: */
115: public void setNowrap(boolean isNowrap) {
116: this .nowrap = isNowrap;
117: }
118:
119: /**
120: * Returns the checker for this attribute.
121: * @return instance of AttrCheck.
122: */
123: public AttrCheck getAttrchk() {
124: return this .attrchk;
125: }
126:
127: /**
128: * Is this a literal (unmodifiable) attribute?
129: * @return <code>true</code> for a literal attribute
130: */
131: public boolean isLiteral() {
132: return this .literal;
133: }
134:
135: /**
136: * Returns the attribute name.
137: * @return attribute name.
138: */
139: public String getName() {
140: return this .name;
141: }
142:
143: /**
144: * Don't wrap this attribute?
145: * @return <code>true</code>= don't wrap
146: */
147: public boolean isNowrap() {
148: return this .nowrap;
149: }
150:
151: /**
152: * Returns the html versions in which this attribute is supported.
153: * @return html versions for this attribute.
154: * @see Dict
155: */
156: public short getVersions() {
157: return this.versions;
158: }
159:
160: }
|