8054632: [since-tag]: javadoc for xml classes has invalid @since tag

Reviewed-by: lancea
This commit is contained in:
Joe Wang 2016-05-20 13:47:36 -07:00
parent 2e1b7ecc6e
commit f56536a6bf
83 changed files with 142 additions and 31 deletions

View File

@ -92,7 +92,7 @@ import org.w3c.dom.DOMException;
* property with a value of "menu", querying for the values of the component
* longhand properties should return the empty string.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSS2Properties {
/**

View File

@ -59,7 +59,7 @@ import org.w3c.dom.DOMException;
* header, has priority (see CSS document representation) but this is not
* reflected in the <code>CSSCharsetRule</code>.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSCharsetRule extends CSSRule {
/**

View File

@ -46,7 +46,7 @@ package org.w3c.dom.css;
* a CSS style sheet. The <code>@font-face</code> rule is used to hold a set
* of font descriptions.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSFontFaceRule extends CSSRule {
/**

View File

@ -48,7 +48,7 @@ import org.w3c.dom.stylesheets.MediaList;
* a CSS style sheet. The <code>@import</code> rule is used to import style
* rules from other style sheets.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSImportRule extends CSSRule {
/**

View File

@ -49,7 +49,7 @@ import org.w3c.dom.stylesheets.MediaList;
* style sheet. A <code>@media</code> rule can be used to delimit style
* rules for specific media types.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSMediaRule extends CSSRule {
/**

View File

@ -48,7 +48,7 @@ import org.w3c.dom.DOMException;
* CSS style sheet. The <code>@page</code> rule is used to specify the
* dimensions, orientation, margins, etc. of a page box for paged media.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSPageRule extends CSSRule {
/**

View File

@ -61,7 +61,7 @@ import org.w3c.dom.DOMException;
* the range 0-255, a color percentage value can be converted to a number;
* (see also the <code>RGBColor</code> interface).
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSPrimitiveValue extends CSSValue {
// UnitTypes

View File

@ -50,7 +50,7 @@ import org.w3c.dom.DOMException;
* sheet, even if the rule is not recognized by the parser. Unrecognized
* rules are represented using the <code>CSSUnknownRule</code> interface.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSRule {
// RuleType

View File

@ -47,7 +47,7 @@ package org.w3c.dom.css;
* <p> The items in the <code>CSSRuleList</code> are accessible via an
* integral index, starting from 0.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSRuleList {
/**

View File

@ -60,7 +60,7 @@ import org.w3c.dom.DOMException;
* interface. The CSS Object Model doesn't provide an access to the
* specified or actual values of the CSS cascade.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSStyleDeclaration {
/**

View File

@ -47,7 +47,7 @@ import org.w3c.dom.DOMException;
* The <code>CSSStyleRule</code> interface represents a single rule set in a
* CSS style sheet.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSStyleRule extends CSSRule {
/**

View File

@ -49,7 +49,7 @@ import org.w3c.dom.stylesheets.StyleSheet;
* represent a CSS style sheet i.e., a style sheet whose content type is
* "text/css".
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSStyleSheet extends StyleSheet {
/**

View File

@ -45,7 +45,7 @@ package org.w3c.dom.css;
* The <code>CSSUnknownRule</code> interface represents an at-rule not
* supported by this user agent.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSUnknownRule extends CSSRule {
}

View File

@ -48,7 +48,7 @@ import org.w3c.dom.DOMException;
* value. A <code>CSSValue</code> object only occurs in a context of a CSS
* property.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSValue {
// UnitTypes

View File

@ -50,7 +50,7 @@ package org.w3c.dom.css;
* <p> The items in the <code>CSSValueList</code> are accessible via an
* integral index, starting from 0.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface CSSValueList extends CSSValue {
/**

View File

@ -46,7 +46,7 @@ package org.w3c.dom.css;
* counters function value. This interface reflects the values in the
* underlying style property.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface Counter {
/**

View File

@ -49,7 +49,7 @@ import org.w3c.dom.DOMException;
* outside the context of a document. There is no way to associate the new
* <code>CSSStyleSheet</code> with a document in DOM Level 2.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface DOMImplementationCSS extends DOMImplementation {
/**

View File

@ -62,7 +62,7 @@ import org.w3c.dom.stylesheets.DocumentStyle;
* interface can be obtained by using binding-specific casting methods on an
* instance of the <code>Document</code> interface.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface DocumentCSS extends DocumentStyle {
/**

View File

@ -50,7 +50,7 @@ package org.w3c.dom.css;
* binding-specific casting methods on an instance of the Element interface
* when the element supports inline CSS style informations.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface ElementCSSInlineStyle {
/**

View File

@ -55,7 +55,7 @@ package org.w3c.dom.css;
* <p> A color percentage value can always be converted to a number and vice
* versa.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface RGBColor {
/**

View File

@ -47,7 +47,7 @@ package org.w3c.dom.css;
* modifications made to the <code>CSSPrimitiveValue</code> objects modify
* the style property.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface Rect {
/**

View File

@ -55,7 +55,7 @@ import org.w3c.dom.views.AbstractView;
* <code>CSSStyleDeclaration</code> and <code>CSSValue</code> related to
* this declaration are no longer valid.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface ViewCSS extends AbstractView {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* The anchor element. See the A element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLAnchorElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* An embedded Java applet. See the APPLET element definition in HTML 4.0.
* This element is deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLAppletElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Client-side image map area definition. See the AREA element definition in
* HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLAreaElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Force a line break. See the BR element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLBRElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Document base URI. See the BASE element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLBaseElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Base font. See the BASEFONT element definition in HTML 4.0. This element
* is deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLBaseFontElement extends HTMLElement {
/**

View File

@ -46,6 +46,8 @@ package org.w3c.dom.html;
* even if the tags are not present in the source document. See the BODY
* element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLBodyElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Push button. See the BUTTON element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLButtonElement extends HTMLElement {
/**

View File

@ -50,6 +50,8 @@ import org.w3c.dom.Node;
* to be live meaning that they are automatically updated when the
* underlying document is changed.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLCollection {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Definition list. See the DL element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLDListElement extends HTMLElement {
/**

View File

@ -47,7 +47,8 @@ import org.w3c.dom.DOMImplementation;
* The <code>HTMLDOMImplementation</code> interface extends the
* <code>DOMImplementation</code> interface with a method for creating an
* HTML document instance.
* @since DOM Level 2
*
* @since 1.4, DOM Level 2
*/
public interface HTMLDOMImplementation extends DOMImplementation {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Directory list. See the DIR element definition in HTML 4.0. This element
* is deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLDirectoryElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Generic block container. See the DIV element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLDivElement extends HTMLElement {
/**

View File

@ -55,6 +55,8 @@ import org.w3c.dom.NodeList;
* <code>getElementById</code> is inherited from the <code>Document</code>
* interface where it was moved.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLDocument extends Document {
/**

View File

@ -53,6 +53,8 @@ import org.w3c.dom.Element;
* of an HTML element is accessible through the
* <code>ElementCSSInlineStyle</code> interface which is defined in the .
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLElement extends Element {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Organizes form controls into logical groups. See the FIELDSET element
* definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLFieldSetElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Local change to font. See the FONT element definition in HTML 4.0. This
* element is deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLFontElement extends HTMLElement {
/**

View File

@ -47,6 +47,8 @@ package org.w3c.dom.html;
* as well as the attributes of the form element. See the FORM element
* definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLFormElement extends HTMLElement {
/**

View File

@ -46,6 +46,8 @@ import org.w3c.dom.Document;
/**
* Create a frame. See the FRAME element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLFrameElement extends HTMLElement {
/**
@ -107,7 +109,7 @@ public interface HTMLFrameElement extends HTMLElement {
/**
* The document this frame contains, if there is any and it is available,
* or <code>null</code> otherwise.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public Document getContentDocument();

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Create a grid of frames. See the FRAMESET element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLFrameSetElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Create a horizontal rule. See the HR element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLHRElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Document head information. See the HEAD element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLHeadElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* For the <code>H1</code> to <code>H6</code> elements. See the H1 element
* definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLHeadingElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Root of an HTML document. See the HTML element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLHtmlElement extends HTMLElement {
/**

View File

@ -46,6 +46,8 @@ import org.w3c.dom.Document;
/**
* Inline subwindows. See the IFRAME element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLIFrameElement extends HTMLElement {
/**
@ -120,7 +122,7 @@ public interface HTMLIFrameElement extends HTMLElement {
/**
* The document this frame contains, if there is any and it is available,
* or <code>null</code> otherwise.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public Document getContentDocument();

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Embedded image. See the IMG element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLImageElement extends HTMLElement {
/**

View File

@ -48,6 +48,8 @@ package org.w3c.dom.html;
* be masked to prevent unauthorized use. See the INPUT element definition
* in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLInputElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* This element is used for single-line text input. See the ISINDEX element
* definition in HTML 4.0. This element is deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLIsIndexElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* List item. See the LI element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLLIElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Form field label text. See the LABEL element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLLabelElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Provides a caption for a <code>FIELDSET</code> grouping. See the LEGEND
* element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLLegendElement extends HTMLElement {
/**

View File

@ -47,6 +47,8 @@ package org.w3c.dom.html;
* See the LINK element definition in HTML 4.0 (see also the
* <code>LinkStyle</code> interface in the module).
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLLinkElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Client-side image map. See the MAP element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLMapElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Menu list. See the MENU element definition in HTML 4.0. This element is
* deprecated in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLMenuElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* This contains generic meta-information about the document. See the META
* element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLMetaElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Notice of modification to part of a document. See the INS and DEL
* element definitions in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLModElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Ordered list. See the OL element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLOListElement extends HTMLElement {
/**

View File

@ -49,6 +49,8 @@ import org.w3c.dom.Document;
* read-only once the underlying object is instantiated. See the OBJECT
* element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLObjectElement extends HTMLElement {
/**
@ -181,7 +183,7 @@ public interface HTMLObjectElement extends HTMLElement {
/**
* The document this object contains, if there is any and it is
* available, or <code>null</code> otherwise.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public Document getContentDocument();

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Group options together in logical subdivisions. See the OPTGROUP element
* definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLOptGroupElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* A selectable choice. See the OPTION element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLOptionElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Paragraphs. See the P element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLParagraphElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Parameters fed to the <code>OBJECT</code> element. See the PARAM element
* definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLParamElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Preformatted text. See the PRE element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLPreElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* For the <code>Q</code> and <code>BLOCKQUOTE</code> elements. See the Q
* element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLQuoteElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Script statements. See the SCRIPT element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLScriptElement extends HTMLElement {
/**

View File

@ -48,6 +48,8 @@ import org.w3c.dom.DOMException;
* options can be directly accessed through the select element as a
* collection. See the SELECT element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLSelectElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Style information. See the STYLE element definition in HTML 4.0, the
* module and the <code>LinkStyle</code> interface in the module.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLStyleElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Table caption See the CAPTION element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableCaptionElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* The object used to represent the <code>TH</code> and <code>TD</code>
* elements. See the TD element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableCellElement extends HTMLElement {
/**

View File

@ -45,6 +45,8 @@ package org.w3c.dom.html;
* Regroups the <code>COL</code> and <code>COLGROUP</code> elements. See the
* COL element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableColElement extends HTMLElement {
/**

View File

@ -52,6 +52,8 @@ import org.w3c.dom.DOMException;
* existing THead or TFoot element. See the TABLE element definition in HTML
* 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableElement extends HTMLElement {
/**

View File

@ -46,6 +46,8 @@ import org.w3c.dom.DOMException;
/**
* A row in a table. See the TR element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableRowElement extends HTMLElement {
/**

View File

@ -47,6 +47,8 @@ import org.w3c.dom.DOMException;
* The <code>THEAD</code> , <code>TFOOT</code> , and <code>TBODY</code>
* elements.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTableSectionElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Multi-line text field. See the TEXTAREA element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTextAreaElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* The document title. See the TITLE element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLTitleElement extends HTMLElement {
/**

View File

@ -44,6 +44,8 @@ package org.w3c.dom.html;
/**
* Unordered list. See the UL element definition in HTML 4.0.
* <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
*
* @since 1.4, DOM Level 2
*/
public interface HTMLUListElement extends HTMLElement {
/**

View File

@ -48,7 +48,7 @@ package org.w3c.dom.stylesheets;
* obtained by using binding-specific casting methods on an instance of the
* <code>Document</code> interface.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface DocumentStyle {
/**

View File

@ -49,7 +49,7 @@ package org.w3c.dom.stylesheets;
* linking node (<code>HTMLLinkElement</code>, <code>HTMLStyleElement</code>
* or <code>ProcessingInstruction</code> in DOM Level 2).
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface LinkStyle {
/**

View File

@ -51,7 +51,7 @@ import org.w3c.dom.DOMException;
* <p> The items in the <code>MediaList</code> are accessible via an integral
* index, starting from 0.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface MediaList {
/**

View File

@ -51,7 +51,7 @@ import org.w3c.dom.Node;
* an inline STYLE element. In XML, this interface represents an external
* style sheet, included via a style sheet processing instruction.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface StyleSheet {
/**

View File

@ -47,7 +47,7 @@ package org.w3c.dom.stylesheets;
* <p> The items in the <code>StyleSheetList</code> are accessible via an
* integral index, starting from 0.
* <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
* @since DOM Level 2
* @since 1.4, DOM Level 2
*/
public interface StyleSheetList {
/**