
2005-04-19 Andrew John Hughes <gnu_andrew@member.fsf.org> * gnu/xml/dom/html2/DomHTMLParser.java: Changed 'enum' references to become 'enumeration'. 2005-04-19 Audrius Meskauskas <audriusa@bluewin.ch> * gnu/xml/dom/html2/DomHTMLParser.java: New file. 2005-04-19 Andrew John Hughes <gnu_andrew@member.fsf.org> * gnu/javax/swing/text/html/parser/htmlAttributeSet.java: (getAttributeNames()): Replaced 'enum' with 'enumeration'. * gnu/javax/swing/text/html/parser/htmlValidator.java: (validateParameters(TagElement,htmlAttributeSet)): Replaced 'enum' with 'enumeration'. (validateAttribute(TagElement,htmlAttributeSet,Enumeration,Enumeration)): Likewise. 2005-04-19 Audrius Meskauskas <audriusa@bluewin.ch> * javax/swing/text/html/parser/Entity.java (getType): New method. * javax/swing/text/html/parser/DocumentParser.java: Inherit from javax.swing.text.html.parser.Parser. 2005-04-19 Chris Burdess <dog@gnu.org> * gnu/xml/dom/html2/DomHTMLDocument.java: Fixed element creation and check for HTML/XHTML namespace. 2005-04-19 Audrius Meskauskas <audriusa@bluewin.ch> * javax/swing/text/html/parser/Parser.java, javax/swing/text/html/parser/Entity.java: Inheriting from DTDConstants. * javax/swing/text/html/parser/AttributeList.java (getValues): Changed return type. * javax/swing/text/html/parser/DocumentParser (parse): Adding the callback parameter that receives the parsing events. 2005-04-19 Chris Burdess <dog@gnu.org> * gnu/xml/dom/DomImpl.java, gnu/xml/dom/html2/DomHTMLAnchorElement.java, gnu/xml/dom/html2/DomHTMLDocument.java, gnu/xml/dom/html2/DomHTMLElement.java, gnu/xml/dom/html2/DomHTMLFormElement.java, gnu/xml/dom/html2/DomHTMLFrameElement.java, gnu/xml/dom/html2/DomHTMLIFrameElement.java, gnu/xml/dom/html2/DomHTMLImpl.java, gnu/xml/dom/html2/DomHTMLInputElement.java, gnu/xml/dom/html2/DomHTMLObjectElement.java, gnu/xml/dom/html2/DomHTMLOptionElement.java, gnu/xml/dom/html2/DomHTMLSelectElement.java, gnu/xml/dom/html2/DomHTMLTableCellElement.java, gnu/xml/dom/html2/DomHTMLTableElement.java, gnu/xml/dom/html2/DomHTMLTableRowElement.java, gnu/xml/dom/html2/DomHTMLTableSectionElement.java, gnu/xml/dom/html2/DomHTMLTextAreaElement.java: JAXP integration, UI events, and tree utility functions. 2005-04-19 Michael Koch <konqueror@gmx.de> * gnu/javax/swing/text/html/parser/HTML_401F.java, gnu/javax/swing/text/html/parser/gnuDTD.java, gnu/javax/swing/text/html/parser/models/node.java: Reworked import statements. 2005-04-19 Audrius Meskauskas, Lithuania <AudriusA@Bioinformatics.org> * javax/swing/text/html/HTMLDocument.java: New file. 2005-04-19 Michael Koch <konqueror@gmx.de> * javax/swing/text/html/HTMLFrameHyperlinkEvent.java: Reformatted. * javax/swing/text/html/parser/AttributeList.java: Fixed order of modifiers. (AttributeList): Made final. * javax/swing/text/html/parser/ContentModel.java: Fixed html characters in javadocs. * javax/swing/text/html/parser/DTD.java (DTD): Don't implement java.io.Serializable directly. (getElement): Simplified. * javax/swing/text/html/parser/DTDConstants.java: Reformatted file. * javax/swing/text/html/parser/Element.java: Fixed order of modifiers. * javax/swing/text/html/parser/Parser.java: Reformatted. Don't use fully-qualified class names. * javax/swing/text/html/parser/ParserDelegator.java: Fixed order of modifiers. * javax/swing/text/rtf/RTFParser.java: Re-ordered import statements. * javax/swing/text/rtf/RTFScanner.java: Removed unused import statement. 2005-04-19 Chris Burdess <dog@gnu.org> * gnu/xml/dom/html2/DomHTMLButtonElement.java, gnu/xml/dom/html2/DomHTMLCollection.java, gnu/xml/dom/html2/DomHTMLDocument.java, gnu/xml/dom/html2/DomHTMLElement.java: Extensions for new element types. * gnu/xml/dom/html2/DomHTMLDListElement.java, gnu/xml/dom/html2/DomHTMLDirectoryElement.java, gnu/xml/dom/html2/DomHTMLDivElement.java, gnu/xml/dom/html2/DomHTMLFieldSetElement.java, gnu/xml/dom/html2/DomHTMLFontElement.java, gnu/xml/dom/html2/DomHTMLFormElement.java, gnu/xml/dom/html2/DomHTMLFrameElement.java, gnu/xml/dom/html2/DomHTMLFrameSetElement.java, gnu/xml/dom/html2/DomHTMLHRElement.java, gnu/xml/dom/html2/DomHTMLHeadElement.java, gnu/xml/dom/html2/DomHTMLHeadingElement.java, gnu/xml/dom/html2/DomHTMLHtmlElement.java, gnu/xml/dom/html2/DomHTMLIFrameElement.java, gnu/xml/dom/html2/DomHTMLImageElement.java, gnu/xml/dom/html2/DomHTMLInputElement.java, gnu/xml/dom/html2/DomHTMLIsIndexElement.java, gnu/xml/dom/html2/DomHTMLLIElement.java, gnu/xml/dom/html2/DomHTMLLabelElement.java, gnu/xml/dom/html2/DomHTMLLegendElement.java, gnu/xml/dom/html2/DomHTMLLinkElement.java, gnu/xml/dom/html2/DomHTMLMapElement.java, gnu/xml/dom/html2/DomHTMLMenuElement.java, gnu/xml/dom/html2/DomHTMLMetaElement.java, gnu/xml/dom/html2/DomHTMLModElement.java, gnu/xml/dom/html2/DomHTMLOListElement.java, gnu/xml/dom/html2/DomHTMLObjectElement.java, gnu/xml/dom/html2/DomHTMLOptGroupElement.java, gnu/xml/dom/html2/DomHTMLOptionElement.java, gnu/xml/dom/html2/DomHTMLParagraphElement.java, gnu/xml/dom/html2/DomHTMLParamElement.java, gnu/xml/dom/html2/DomHTMLPreElement.java, gnu/xml/dom/html2/DomHTMLQuoteElement.java, gnu/xml/dom/html2/DomHTMLScriptElement.java, gnu/xml/dom/html2/DomHTMLSelectElement.java, gnu/xml/dom/html2/DomHTMLStyleElement.java, gnu/xml/dom/html2/DomHTMLTableCaptionElement.java, gnu/xml/dom/html2/DomHTMLTableCellElement.java, gnu/xml/dom/html2/DomHTMLTableColElement.java, gnu/xml/dom/html2/DomHTMLTableElement.java, gnu/xml/dom/html2/DomHTMLTableRowElement.java, gnu/xml/dom/html2/DomHTMLTableSectionElement.java, gnu/xml/dom/html2/DomHTMLTextAreaElement.java, gnu/xml/dom/html2/DomHTMLTitleElement.java, gnu/xml/dom/html2/DomHTMLUListElement.java: New files. 2005-04-19 Audrius Meskauskas <audriusa@bluewin.ch> * javax/swing/text/ChangedCharSetException.java, javax/swing/text/html/HTMLEditorKit.java, javax/swing/text/html/HTMLFrameHyperlinkEvent.java, javax/swing/text/html/parser/AttributeList.java, javax/swing/text/html/parser/ContentModel.java, javax/swing/text/html/parser/DocumentParser.java, javax/swing/text/html/parser/DTD.java, javax/swing/text/html/parser/DTDConstants.java, javax/swing/text/html/parser/Element.java, javax/swing/text/html/parser/Entity.java, javax/swing/text/html/parser/Parser.java, javax/swing/text/html/parser/TagElement.java, gnu/javax/swing/text/html/package.html, gnu/javax/swing/text/html/parser/gnuDTD.java, gnu/javax/swing/text/html/parser/HTML_401F.java, gnu/javax/swing/text/html/parser/htmlAttributeSet.java, gnu/javax/swing/text/html/parser/htmlValidator.java, gnu/javax/swing/text/html/parser/package.html, gnu/javax/swing/text/html/parser/models/list.java, gnu/javax/swing/text/html/parser/models/node.java, gnu/javax/swing/text/html/parser/models/noTagModel.java, gnu/javax/swing/text/html/parser/models/package.html, gnu/javax/swing/text/html/parser/models/PCDATAonly_model.java, gnu/javax/swing/text/html/parser/models/TableRowContentModel.java, gnu/javax/swing/text/html/parser/models/transformer.java, gnu/javax/swing/text/html/parser/support/gnuStringIntMapper.java, gnu/javax/swing/text/html/parser/support/package.html, gnu/javax/swing/text/html/parser/support/parameterDefaulter.java, gnu/javax/swing/text/html/parser/support/Parser.java, gnu/javax/swing/text/html/parser/support/textPreProcessor.java, gnu/javax/swing/text/html/parser/support/low/Buffer.java, gnu/javax/swing/text/html/parser/support/low/Constants.java, gnu/javax/swing/text/html/parser/support/low/Location.java, gnu/javax/swing/text/html/parser/support/low/node.java, gnu/javax/swing/text/html/parser/support/low/package.html, gnu/javax/swing/text/html/parser/support/low/ParseException.java, gnu/javax/swing/text/html/parser/support/low/pattern.java, gnu/javax/swing/text/html/parser/support/low/Queue.java, gnu/javax/swing/text/html/parser/support/low/ReaderTokenizer.java: New files. * javax/swing/text/html/HTML.java, javax/swing/text/html/parser/ParserDelegator.java: New files (replacing). * javax/swing/text/html/package.html, javax/swing/text/html/parser/package.html: Documenting the packages. 2005-04-19 Chris Burdess <dog@gnu.org> * gnu/xml/dom/html2/DomHTMLAnchorElement.java, gnu/xml/dom/html2/DomHTMLAppletElement.java, gnu/xml/dom/html2/DomHTMLAreaElement.java, gnu/xml/dom/html2/DomHTMLBaseElement.java, gnu/xml/dom/html2/DomHTMLBaseFontElement.java, gnu/xml/dom/html2/DomHTMLBodyElement.java, gnu/xml/dom/html2/DomHTMLBRElement.java, gnu/xml/dom/html2/DomHTMLButtonElement.java, gnu/xml/dom/html2/DomHTMLCollection.java, gnu/xml/dom/html2/DomHTMLDocument.java, gnu/xml/dom/html2/DomHTMLElement.java: New files. 2005-04-19 Michael Koch <konqueror@gmx.de> * Makefile.am: Added new files. * Makefile.in: Regenerated. From-SVN: r98406
290 lines
8.2 KiB
Java
Executable file
290 lines
8.2 KiB
Java
Executable file
/* DTDConstants.java --
|
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Classpath.
|
|
|
|
GNU Classpath is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU Classpath is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU Classpath; see the file COPYING. If not, write to the
|
|
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA.
|
|
|
|
Linking this library statically or dynamically with other modules is
|
|
making a combined work based on this library. Thus, the terms and
|
|
conditions of the GNU General Public License cover the whole
|
|
combination.
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
permission to link this library with independent modules to produce an
|
|
executable, regardless of the license terms of these independent
|
|
modules, and to copy and distribute the resulting executable under
|
|
terms of your choice, provided that you also meet, for each linked
|
|
independent module, the terms and conditions of the license of that
|
|
module. An independent module is a module which is not derived from
|
|
or based on this library. If you modify this library, you may extend
|
|
this exception to your version of the library, but you are not
|
|
obligated to do so. If you do not wish to do so, delete this
|
|
exception statement from your version. */
|
|
|
|
|
|
package javax.swing.text.html.parser;
|
|
|
|
/**
|
|
* <p>This class defines the SGML basic types, used for describing HTML 4.01
|
|
* at {@link http://www.w3.org/TR/html4/types.html }. Not all constants,
|
|
* defined here, are actually used in HTML 4.01 SGML specification. Some others
|
|
* are defined just as part of the required implementation.
|
|
* </p>
|
|
* <p>
|
|
* If you need more information about SGML DTD documents,
|
|
* the author suggests to read SGML tutorial on
|
|
* {@link http://www.w3.org/TR/WD-html40-970708/intro/sgmltut.html}.
|
|
* We also recommend Goldfarb C.F (1991) <i>The SGML Handbook</i>,
|
|
* Oxford University Press, 688 p, ISBN: 0198537379.
|
|
* </p>
|
|
*
|
|
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
|
|
*/
|
|
public interface DTDConstants
|
|
{
|
|
/* ----- The data types, used in HTML 4.01 SGML definition: ---- */
|
|
|
|
/**
|
|
* The CDATA (Character data) constant, specifes the content model,
|
|
* consisting of characters only. In SGML for HTML 4.01, the character
|
|
* entities must be replaced by characters, the line feeds must be
|
|
* ignored and any number of the subsequent carriage returns or tabs
|
|
* must be replaced by a single space.
|
|
*/
|
|
int CDATA = 1;
|
|
|
|
/**
|
|
* The EMPTY constant, means the element with no content.
|
|
*/
|
|
int EMPTY = 17;
|
|
|
|
/**
|
|
* The ID constant, means that the token is the unique identifier.
|
|
* This identifier can be referenced by attribute with value of IDREF.
|
|
* The identifier must begin with letter, followed by any number of
|
|
* letters, digits, hyphens, underscores, colons and periods.
|
|
*/
|
|
int ID = 4;
|
|
|
|
/**
|
|
* The IDREF constant, specifies reference to a valid ID within
|
|
* the document.
|
|
*/
|
|
int IDREF = 5;
|
|
|
|
/**
|
|
* The IDREFS constant, a space separated list of IDREFs
|
|
*/
|
|
int IDREFS = 6;
|
|
|
|
/**
|
|
* The NAME constant, means the token that
|
|
* must begin with letter, followed by any number of
|
|
* letters, digits, hyphens, underscores, colons and periods.
|
|
*/
|
|
int NAME = 7;
|
|
|
|
/**
|
|
* The NAMES constant, specifies a space separated of NAMEs.
|
|
*/
|
|
int NAMES = 8;
|
|
|
|
/**
|
|
* The NMTOKEN constant, specifies the attribute, consisting of
|
|
* characters that can be either digits or alphabetic characters).
|
|
*/
|
|
int NMTOKEN = 9;
|
|
|
|
/**
|
|
* The NMTOKENS constant, specifies a list of NMTOKENs.
|
|
*/
|
|
int NMTOKENS = 10;
|
|
|
|
/**
|
|
* The NOTATION constant, a previously defined data type.
|
|
*/
|
|
int NOTATION = 11;
|
|
|
|
/**
|
|
* The NUMBER constant (means that the attribute consists of at least
|
|
* one decimal digit).
|
|
*/
|
|
int NUMBER = 12;
|
|
|
|
/**
|
|
* The NUMBERS constant, specifies a space separated list of NUMBERs.
|
|
*/
|
|
int NUMBERS = 13;
|
|
|
|
/**
|
|
* The NUTOKEN constant.
|
|
*/
|
|
int NUTOKEN = 14;
|
|
|
|
/**
|
|
* The NUTOKENS constant.
|
|
*/
|
|
int NUTOKENS = 15;
|
|
|
|
/* -------
|
|
The entity scope constants.
|
|
As these four constants are combined with the bitwise OR,
|
|
they are defined in the hexadecimal notation.
|
|
The reason of setting the two bits at once (for PUBLIC and SYSTEM)
|
|
is probably historical. ----- */
|
|
|
|
/**
|
|
* The PUBLIC constant, specifies the public entity. The PUBLIC entities
|
|
* are assumed to be known to many systems so that a full declaration
|
|
* need not be transmitted. For example,
|
|
* <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
|
*/
|
|
int PUBLIC = 0xA;
|
|
|
|
/**
|
|
* The SYSTEM constant, specifies the system entitiy. The system entities
|
|
* are assumed to be known but require the clear identifer
|
|
* (like the file path), where they can be found in the system.
|
|
* For example, <code>
|
|
* <DOCTYPE html SYSTEM "/path/to/file.dtd"> </code>.
|
|
*/
|
|
int SYSTEM = 0x11;
|
|
|
|
/**
|
|
* The PARAMETER constant, specifies that entity is only valid
|
|
* inside SGML DTD scope.
|
|
*/
|
|
int PARAMETER = 0x40000;
|
|
|
|
/**
|
|
* The GENERAL constant, specifies theat the entity is valid in the
|
|
* whole HTML document scope.
|
|
*/
|
|
int GENERAL = 0x10000;
|
|
|
|
/* ---- The constants, defining if the element attribute is required,
|
|
fixed or implied. ---- */
|
|
|
|
/**
|
|
* The attribute modifier #REQUIRED constant, indicates that the
|
|
* value must be supplied.
|
|
*/
|
|
int REQUIRED = 2;
|
|
|
|
/**
|
|
* The attribute modifier #FIXED constant, means that the attribute has
|
|
* the fixed value that cannot be changed.
|
|
*/
|
|
int FIXED = 1;
|
|
|
|
/**
|
|
* The attribute modifier #IMPLIED constant,
|
|
* indicating that for this attribute the user agent must provide
|
|
* the value itself.
|
|
*/
|
|
int IMPLIED = 5;
|
|
|
|
/**
|
|
* The attribute modifier #CURRENT constant, specifies the value
|
|
* that at any point in the document is the last value supplied for
|
|
* that element. A value is required to be supplied for the first
|
|
* occurrence of an element
|
|
*/
|
|
int CURRENT = 3;
|
|
|
|
/**
|
|
* The attribute modifier #CONREF constant, specifies the IDREF value of
|
|
* the reference to content in another location of the document.
|
|
* The element with this attribute is empty, the content from
|
|
* that another location must be used instead.
|
|
*/
|
|
int CONREF = 4;
|
|
|
|
/* ----- Constants, defining if the element
|
|
start and end tags are required. ---- */
|
|
|
|
/**
|
|
* The STARTTAG, meaning that the element needs a starting tag.
|
|
*/
|
|
int STARTTAG = 13;
|
|
|
|
/**
|
|
* The ENDTAG constant, meaning that the element needs a closing tag.
|
|
*/
|
|
int ENDTAG = 14;
|
|
|
|
/* ----- Other constants: ----- */
|
|
|
|
/**
|
|
* The ANY constant, specifies
|
|
* an attribute, consisting from arbitrary characters.
|
|
*/
|
|
int ANY = 19;
|
|
|
|
/**
|
|
* The DEFAULT constant, specifies the default value.
|
|
*/
|
|
int DEFAULT = 131072;
|
|
|
|
/**
|
|
* The ENTITIES constant (list of ENTITYes)
|
|
*/
|
|
int ENTITIES = 3;
|
|
|
|
/**
|
|
* The ENTITY constant, meaning the numeric or symbolic name of some
|
|
* HTML data.
|
|
*/
|
|
int ENTITY = 2;
|
|
|
|
/**
|
|
* The MD constant.
|
|
*/
|
|
int MD = 16;
|
|
|
|
/**
|
|
* The MODEL constant.
|
|
*/
|
|
int MODEL = 18;
|
|
|
|
/**
|
|
* The MS constant.
|
|
*/
|
|
int MS = 15;
|
|
|
|
/**
|
|
* The PI (Processing Instruction) constant, specifies a processing
|
|
* instruction. Processing instructions are used to embed information
|
|
* intended for specific applications.
|
|
*/
|
|
int PI = 12;
|
|
|
|
/**
|
|
* The RCDATA constant (Entity References and Character Data), specifies
|
|
* the content model, consisting of characters AND entities. The
|
|
* "<" is threated as an ordinary character, but
|
|
* "<code>&name;</code>" still means the general entity with
|
|
* the given name.
|
|
*/
|
|
int RCDATA = 16;
|
|
|
|
/**
|
|
* The SDATA constant. Means that the value contains the entity name
|
|
* and the replacement value of a character entity reference.
|
|
*/
|
|
int SDATA = 11;
|
|
}
|