Still trying to get the Javadoc synched up. No functional changes.
DOM HTML Level 1 Second Edition, extracted from http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/java-binding.zip git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@225970 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3ad12ecf26
commit
8c459bfa25
94
java/external/src/org/w3c/dom/html/HTMLAnchorElement.java
vendored
Normal file
94
java/external/src/org/w3c/dom/html/HTMLAnchorElement.java
vendored
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The anchor element. See the A element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLAnchorElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* The character encoding of the linked resource. See the charset attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCharset();
|
||||||
|
public void setCharset(String charset);
|
||||||
|
/**
|
||||||
|
* Comma-separated list of lengths, defining an active region geometry.See
|
||||||
|
* also <code>shape</code> for the shape of the region. See the coords
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCoords();
|
||||||
|
public void setCoords(String coords);
|
||||||
|
/**
|
||||||
|
* The URI of the linked resource. See the href attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getHref();
|
||||||
|
public void setHref(String href);
|
||||||
|
/**
|
||||||
|
* Language code of the linked resource. See the hreflang attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHreflang();
|
||||||
|
public void setHreflang(String hreflang);
|
||||||
|
/**
|
||||||
|
* Anchor name. See the name attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Forward link type. See the rel attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRel();
|
||||||
|
public void setRel(String rel);
|
||||||
|
/**
|
||||||
|
* Reverse link type. See the rev attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRev();
|
||||||
|
public void setRev(String rev);
|
||||||
|
/**
|
||||||
|
* The shape of the active area. The coordinates are givenby
|
||||||
|
* <code>coords</code>. See the shape attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getShape();
|
||||||
|
public void setShape(String shape);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* Frame to render the resource in. See the target attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
public void setTarget(String target);
|
||||||
|
/**
|
||||||
|
* Advisory content type. See the type attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
/**
|
||||||
|
* Removes keyboard focus from this element.
|
||||||
|
*/
|
||||||
|
public void blur();
|
||||||
|
/**
|
||||||
|
* Gives keyboard focus to this element.
|
||||||
|
*/
|
||||||
|
public void focus();
|
||||||
|
}
|
||||||
|
|
||||||
88
java/external/src/org/w3c/dom/html/HTMLAppletElement.java
vendored
Normal file
88
java/external/src/org/w3c/dom/html/HTMLAppletElement.java
vendored
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An embedded Java applet. See the APPLET element definition in HTML 4.0.
|
||||||
|
* This element is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLAppletElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Aligns this object (vertically or horizontally) with respect to its
|
||||||
|
* surrounding text. See the align attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Alternate text for user agents not rendering the normal contentof this
|
||||||
|
* element. See the alt attribute definition in HTML 4.0. This attribute is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlt();
|
||||||
|
public void setAlt(String alt);
|
||||||
|
/**
|
||||||
|
* Comma-separated archive list. See the archive attribute definition in
|
||||||
|
* HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getArchive();
|
||||||
|
public void setArchive(String archive);
|
||||||
|
/**
|
||||||
|
* Applet class file. See the code attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCode();
|
||||||
|
public void setCode(String code);
|
||||||
|
/**
|
||||||
|
* Optional base URI for applet. See the codebase attribute definition in
|
||||||
|
* HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCodeBase();
|
||||||
|
public void setCodeBase(String codeBase);
|
||||||
|
/**
|
||||||
|
* Override height. See the height attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeight();
|
||||||
|
public void setHeight(String height);
|
||||||
|
/**
|
||||||
|
* Horizontal space to the left and right of this image, applet, or object.
|
||||||
|
* See the hspace attribute definition in HTML 4.0. This attribute is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHspace();
|
||||||
|
public void setHspace(String hspace);
|
||||||
|
/**
|
||||||
|
* The name of the applet. See the name attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Serialized applet file. See the object attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getObject();
|
||||||
|
public void setObject(String object);
|
||||||
|
/**
|
||||||
|
* Vertical space above and below this image, applet, or object. See the
|
||||||
|
* vspace attribute definition in HTML 4.0. This attribute is deprecated in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVspace();
|
||||||
|
public void setVspace(String vspace);
|
||||||
|
/**
|
||||||
|
* Override width. See the width attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
67
java/external/src/org/w3c/dom/html/HTMLAreaElement.java
vendored
Normal file
67
java/external/src/org/w3c/dom/html/HTMLAreaElement.java
vendored
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Client-side image map area definition. See the AREA element definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLAreaElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* Alternate text for user agents not rendering the normal contentof this
|
||||||
|
* element. See the alt attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlt();
|
||||||
|
public void setAlt(String alt);
|
||||||
|
/**
|
||||||
|
* Comma-separated list of lengths, defining an active region geometry.See
|
||||||
|
* also <code>shape</code> for the shape of the region. See the coords
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCoords();
|
||||||
|
public void setCoords(String coords);
|
||||||
|
/**
|
||||||
|
* The URI of the linked resource. See the href attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getHref();
|
||||||
|
public void setHref(String href);
|
||||||
|
/**
|
||||||
|
* Specifies that this area is inactive, i.e., has no associated action. See
|
||||||
|
* the nohref attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getNoHref();
|
||||||
|
public void setNoHref(boolean noHref);
|
||||||
|
/**
|
||||||
|
* The shape of the active area. The coordinates are givenby
|
||||||
|
* <code>coords</code>. See the shape attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getShape();
|
||||||
|
public void setShape(String shape);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* Frame to render the resource in. See the target attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
public void setTarget(String target);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLBRElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLBRElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force a line break. See the BR element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLBRElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Control flow of text around floats. See the clear attribute definition in
|
||||||
|
* HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getClear();
|
||||||
|
public void setClear(String clear);
|
||||||
|
}
|
||||||
|
|
||||||
27
java/external/src/org/w3c/dom/html/HTMLBaseElement.java
vendored
Normal file
27
java/external/src/org/w3c/dom/html/HTMLBaseElement.java
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Document base URI. See the BASE element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLBaseElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The base URI See the href attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHref();
|
||||||
|
public void setHref(String href);
|
||||||
|
/**
|
||||||
|
* The default target frame. See the target attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
public void setTarget(String target);
|
||||||
|
}
|
||||||
|
|
||||||
36
java/external/src/org/w3c/dom/html/HTMLBaseFontElement.java
vendored
Normal file
36
java/external/src/org/w3c/dom/html/HTMLBaseFontElement.java
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base font. See the BASEFONT element definition in HTML 4.0. This element is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLBaseFontElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Font color. See the color attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getColor();
|
||||||
|
public void setColor(String color);
|
||||||
|
/**
|
||||||
|
* Font face identifier. See the face attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getFace();
|
||||||
|
public void setFace(String face);
|
||||||
|
/**
|
||||||
|
* Font size. See the size attribute definition in HTML 4.0. This attribute
|
||||||
|
* is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSize();
|
||||||
|
public void setSize(String size);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLBlockquoteElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ??? See the BLOCKQUOTE element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLBlockquoteElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* A URI designating a document that describes the reason forthe change. See
|
||||||
|
* the cite attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCite();
|
||||||
|
public void setCite(String cite);
|
||||||
|
}
|
||||||
|
|
||||||
57
java/external/src/org/w3c/dom/html/HTMLBodyElement.java
vendored
Normal file
57
java/external/src/org/w3c/dom/html/HTMLBodyElement.java
vendored
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The HTML document body. This element is always present in the DOM API,even
|
||||||
|
* if the tags are not present in the source document. See the BODY element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLBodyElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Color of active links (after mouse-button down, but beforemouse-button
|
||||||
|
* up). See the alink attribute definition in HTML 4.0. This attribute is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getALink();
|
||||||
|
public void setALink(String aLink);
|
||||||
|
/**
|
||||||
|
* URI of the background texture tile image. See the background attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBackground();
|
||||||
|
public void setBackground(String background);
|
||||||
|
/**
|
||||||
|
* Document background color. See the bgcolor attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBgColor();
|
||||||
|
public void setBgColor(String bgColor);
|
||||||
|
/**
|
||||||
|
* Color of links that are not active and unvisited. See the link attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLink();
|
||||||
|
public void setLink(String link);
|
||||||
|
/**
|
||||||
|
* Document text color. See the text attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getText();
|
||||||
|
public void setText(String text);
|
||||||
|
/**
|
||||||
|
* Color of links that have been visited by the user. See the vlink
|
||||||
|
* attribute definition in HTML 4.0. This attribute is deprecated in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getVLink();
|
||||||
|
public void setVLink(String vLink);
|
||||||
|
}
|
||||||
|
|
||||||
56
java/external/src/org/w3c/dom/html/HTMLButtonElement.java
vendored
Normal file
56
java/external/src/org/w3c/dom/html/HTMLButtonElement.java
vendored
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Push button. See the BUTTON element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLButtonElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Form control or object name when submitted with a form. See the name
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* The type of button. See the type attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
/**
|
||||||
|
* The current form control value. See the value attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
}
|
||||||
|
|
||||||
46
java/external/src/org/w3c/dom/html/HTMLCollection.java
vendored
Normal file
46
java/external/src/org/w3c/dom/html/HTMLCollection.java
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An <code>HTMLCollection</code> is a list of nodes. An individual nodemay be
|
||||||
|
* accessed by either ordinal index or the node's<code>name</code> or
|
||||||
|
* <code>id</code> attributes. Note:Collections in the HTML DOM are assumed
|
||||||
|
* to be live meaningthat they are automatically updated when the underlying
|
||||||
|
* document ischanged.
|
||||||
|
*/
|
||||||
|
public interface HTMLCollection {
|
||||||
|
/**
|
||||||
|
* This attribute specifies the length or size of the list.
|
||||||
|
*/
|
||||||
|
public int getLength();
|
||||||
|
/**
|
||||||
|
* This method retrieves a node specified by ordinal index. Nodes are
|
||||||
|
* numbered in tree order (depth-first traversal order).
|
||||||
|
* @param index The index of the node to be fetched. The index origin is 0.
|
||||||
|
* @return The <code>Node</code> at the corresponding position upon success.
|
||||||
|
* A value of <code>null</code> is returned if the index is out of range.
|
||||||
|
*/
|
||||||
|
public Node item(int index);
|
||||||
|
/**
|
||||||
|
* This method retrieves a <code>Node</code> using a name. It first searches
|
||||||
|
* for a <code>Node</code> with a matching <code>id</code> attribute. If it
|
||||||
|
* doesn't find one, it then searches for a <code>Node</code> with a
|
||||||
|
* matching <code>name</code> attribute, but only on those elements that
|
||||||
|
* are allowed a name attribute.
|
||||||
|
* @param name The name of the <code>Node</code> to be fetched.
|
||||||
|
* @return The <code>Node</code> with a <code>name</code> or <code>id</code>
|
||||||
|
* attribute whose value corresponds to the specified string. Upon
|
||||||
|
* failure (e.g., no node with this name exists), returns
|
||||||
|
* <code>null</code>.
|
||||||
|
*/
|
||||||
|
public Node namedItem(String name);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLDListElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLDListElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Definition list. See the DL element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLDListElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Reduce spacing between list items. See the compact attribute definition
|
||||||
|
* in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getCompact();
|
||||||
|
public void setCompact(boolean compact);
|
||||||
|
}
|
||||||
|
|
||||||
24
java/external/src/org/w3c/dom/html/HTMLDirectoryElement.java
vendored
Normal file
24
java/external/src/org/w3c/dom/html/HTMLDirectoryElement.java
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Directory list. See the DIR element definition in HTML 4.0. This element is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLDirectoryElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Reduce spacing between list items. See the compact attribute definition
|
||||||
|
* in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getCompact();
|
||||||
|
public void setCompact(boolean compact);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLDivElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLDivElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generic block container. See the DIV element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLDivElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Horizontal text alignment. See the align attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
}
|
||||||
|
|
||||||
135
java/external/src/org/w3c/dom/html/HTMLDocument.java
vendored
Normal file
135
java/external/src/org/w3c/dom/html/HTMLDocument.java
vendored
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An <code>HTMLDocument</code> is the root of the HTML hierarchy andholds the
|
||||||
|
* entire content. Beside providing access to the hierarchy, italso provides
|
||||||
|
* some convenience methods for accessing certain sets ofinformation from the
|
||||||
|
* document.
|
||||||
|
* <p>The following properties have been deprecated in favor of the
|
||||||
|
* corresponding ones for the BODY element:alinkColorbackgroundbgColorfgColor
|
||||||
|
* linkColorvlinkColor
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public interface HTMLDocument extends Document {
|
||||||
|
/**
|
||||||
|
* The title of a document as specified by the <code>TITLE</code>element in
|
||||||
|
* the head of the document.
|
||||||
|
*/
|
||||||
|
public String getTitle();
|
||||||
|
public void setTitle(String title);
|
||||||
|
/**
|
||||||
|
* Returns the URI of the page that linked to this page. The value isan
|
||||||
|
* empty string if the user navigated to the page directly (notthrough a
|
||||||
|
* link, but, for example, via a bookmark).
|
||||||
|
*/
|
||||||
|
public String getReferrer();
|
||||||
|
/**
|
||||||
|
* The domain name of the server that served the document, or a nullstring
|
||||||
|
* if the server cannot be identified by a domain name.
|
||||||
|
*/
|
||||||
|
public String getDomain();
|
||||||
|
/**
|
||||||
|
* The complete URI of the document.
|
||||||
|
*/
|
||||||
|
public String getURL();
|
||||||
|
/**
|
||||||
|
* The element that contains the content for the document. In documentswith
|
||||||
|
* <code>BODY</code> contents, returns the <code>BODY</code>element, and in
|
||||||
|
* frameset documents, this returns the outermost<code>FRAMESET</code>
|
||||||
|
* element.
|
||||||
|
*/
|
||||||
|
public HTMLElement getBody();
|
||||||
|
public void setBody(HTMLElement body);
|
||||||
|
/**
|
||||||
|
* A collection of all the <code>IMG</code> elements in a document.The
|
||||||
|
* behavior is limited to <code>IMG</code> elements forbackwards
|
||||||
|
* compatibility.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getImages();
|
||||||
|
/**
|
||||||
|
* A collection of all the <code>OBJECT</code> elements that includeapplets
|
||||||
|
* and <code>APPLET</code> (deprecated) elements ina document.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getApplets();
|
||||||
|
/**
|
||||||
|
* A collection of all <code>AREA</code> elements andanchor (<code>A</code>)
|
||||||
|
* elements in a documentwith a value for the <code>href</code> attribute.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getLinks();
|
||||||
|
/**
|
||||||
|
* A collection of all the forms of a document.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getForms();
|
||||||
|
/**
|
||||||
|
* A collection of all the anchor (<code>A</code>) elements in a document
|
||||||
|
* with a value for the <code>name</code> attribute.Note. For reasons of
|
||||||
|
* backwardscompatibility, the returned set of anchors only contains those
|
||||||
|
* anchors created with the <code>name</code> attribute, not those created
|
||||||
|
* with the <code>id</code> attribute.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getAnchors();
|
||||||
|
/**
|
||||||
|
* The cookies associated with this document. If there are none, thevalue is
|
||||||
|
* an empty string. Otherwise, the value is a string: asemicolon-delimited
|
||||||
|
* list of "name, value" pairs for all the cookiesassociated with the page.
|
||||||
|
* For example, <code>name=value;expires=date</code>.
|
||||||
|
*/
|
||||||
|
public String getCookie();
|
||||||
|
public void setCookie(String cookie);
|
||||||
|
/**
|
||||||
|
* Note.This method and the ones following allow a user to add to or replace
|
||||||
|
* the structuremodel of a document using strings of unparsed HTML. At the
|
||||||
|
* time of writing alternate methods for providing similar functionality
|
||||||
|
* for both HTML and XML documents were being considered. The following
|
||||||
|
* methodsmay be deprecated at some point in the future in favor of a more
|
||||||
|
* general-purpose mechanism.
|
||||||
|
* <br>Open a document stream for writing. If a document exists in the
|
||||||
|
* target, this method clears it.
|
||||||
|
*/
|
||||||
|
public void open();
|
||||||
|
/**
|
||||||
|
* Closes a document stream opened by <code>open()</code>and forces
|
||||||
|
* rendering.
|
||||||
|
*/
|
||||||
|
public void close();
|
||||||
|
/**
|
||||||
|
* Write a string of text to a document stream opened by<code>open()</code>.
|
||||||
|
* The text is parsed into the document's structuremodel.
|
||||||
|
* @param text The string to be parsed into some structure in the document
|
||||||
|
* structuremodel.
|
||||||
|
*/
|
||||||
|
public void write(String text);
|
||||||
|
/**
|
||||||
|
* Write a string of text followed by a newline character to a document
|
||||||
|
* stream opened by <code>open()</code>. The text is parsed into the
|
||||||
|
* document's structure model.
|
||||||
|
* @param text The string to be parsed into some structure in the document
|
||||||
|
* structuremodel.
|
||||||
|
*/
|
||||||
|
public void writeln(String text);
|
||||||
|
/**
|
||||||
|
* Returns the Element whose <code>id</code> is given by elementId. If no
|
||||||
|
* such element exists, returns <code>null</code>. Behavior is not defined
|
||||||
|
* if more than one element has this <code>id</code>.
|
||||||
|
* @param elementId The unique <code>id</code> value for an element.
|
||||||
|
* @return The matching element.
|
||||||
|
*/
|
||||||
|
public Element getElementById(String elementId);
|
||||||
|
/**
|
||||||
|
* Returns the (possibly empty) collection of elements whose<code>name</code>
|
||||||
|
* value is given by <code>elementName</code>.
|
||||||
|
* @param elementName The <code>name</code> attribute value for an element.
|
||||||
|
* @return The matching elements.
|
||||||
|
*/
|
||||||
|
public NodeList getElementsByName(String elementName);
|
||||||
|
}
|
||||||
|
|
||||||
54
java/external/src/org/w3c/dom/html/HTMLElement.java
vendored
Normal file
54
java/external/src/org/w3c/dom/html/HTMLElement.java
vendored
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* All HTML element interfaces derive from this class. Elements that only
|
||||||
|
* exposethe HTML core attributes are represented by the base
|
||||||
|
* <code>HTMLElement</code> interface. These elements are as follows:HEAD
|
||||||
|
* special: SUB, SUP, SPAN, BDOfont: TT, I, B, U, S, STRIKE, BIG, SMALL
|
||||||
|
* phrase: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ACRONYM, ABBRlist:
|
||||||
|
* DD, DTNOFRAMES, NOSCRIPTADDRESS, CENTER
|
||||||
|
* Note. The <code>style</code> attribute for thisinterface is reserved for
|
||||||
|
* future usage.
|
||||||
|
*/
|
||||||
|
public interface HTMLElement extends Element {
|
||||||
|
/**
|
||||||
|
* The element's identifier. See the id attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getId();
|
||||||
|
public void setId(String id);
|
||||||
|
/**
|
||||||
|
* The element's advisory title. See the title attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getTitle();
|
||||||
|
public void setTitle(String title);
|
||||||
|
/**
|
||||||
|
* Language code defined in RFC 1766. See the lang attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLang();
|
||||||
|
public void setLang(String lang);
|
||||||
|
/**
|
||||||
|
* Specifies the base direction of directionally neutraltext and the
|
||||||
|
* directionality of tables. See the dir attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getDir();
|
||||||
|
public void setDir(String dir);
|
||||||
|
/**
|
||||||
|
* The class attribute of the element. This attribute has been renameddue to
|
||||||
|
* conflicts with the "class" keyword exposed by many languages. See the
|
||||||
|
* class attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getClassName();
|
||||||
|
public void setClassName(String className);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLFieldSetElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLFieldSetElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Organizes form controls into logical groups. See the FIELDSET element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLFieldSetElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
}
|
||||||
|
|
||||||
36
java/external/src/org/w3c/dom/html/HTMLFontElement.java
vendored
Normal file
36
java/external/src/org/w3c/dom/html/HTMLFontElement.java
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Local change to font. See the FONT element definition in HTML 4.0. This
|
||||||
|
* element is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLFontElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Font color. See the color attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getColor();
|
||||||
|
public void setColor(String color);
|
||||||
|
/**
|
||||||
|
* Font face identifier. See the face attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getFace();
|
||||||
|
public void setFace(String face);
|
||||||
|
/**
|
||||||
|
* Font size. See the size attribute definition in HTML 4.0. This attribute
|
||||||
|
* is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSize();
|
||||||
|
public void setSize(String size);
|
||||||
|
}
|
||||||
|
|
||||||
72
java/external/src/org/w3c/dom/html/HTMLFormElement.java
vendored
Normal file
72
java/external/src/org/w3c/dom/html/HTMLFormElement.java
vendored
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>FORM</code> element encompasses behavior similar to acollection
|
||||||
|
* and an element. It provides direct access to the containedinput elements
|
||||||
|
* as well as the attributes of the form element. See the FORM element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLFormElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns a collection of all control elements in the form.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getElements();
|
||||||
|
/**
|
||||||
|
* The number of form controls in the form.
|
||||||
|
*/
|
||||||
|
public int getLength();
|
||||||
|
/**
|
||||||
|
* Names the form.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* List of character sets supported by the server. See the accept-charset
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAcceptCharset();
|
||||||
|
public void setAcceptCharset(String acceptCharset);
|
||||||
|
/**
|
||||||
|
* Server-side form handler. See the action attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAction();
|
||||||
|
public void setAction(String action);
|
||||||
|
/**
|
||||||
|
* The content type of the submitted form, generally
|
||||||
|
* "application/x-www-form-urlencoded". See the enctype attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getEnctype();
|
||||||
|
public void setEnctype(String enctype);
|
||||||
|
/**
|
||||||
|
* HTTP method used to submit form. See the method attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMethod();
|
||||||
|
public void setMethod(String method);
|
||||||
|
/**
|
||||||
|
* Frame to render the resource in. See the target attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
public void setTarget(String target);
|
||||||
|
/**
|
||||||
|
* Submits the form. It performs the same action as a submit button.
|
||||||
|
*/
|
||||||
|
public void submit();
|
||||||
|
/**
|
||||||
|
* Restores a form element's default values. It performs the same action as
|
||||||
|
* a reset button.
|
||||||
|
*/
|
||||||
|
public void reset();
|
||||||
|
}
|
||||||
|
|
||||||
65
java/external/src/org/w3c/dom/html/HTMLFrameElement.java
vendored
Normal file
65
java/external/src/org/w3c/dom/html/HTMLFrameElement.java
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a frame. See the FRAME element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLFrameElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Request frame borders. See the frameborder attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getFrameBorder();
|
||||||
|
public void setFrameBorder(String frameBorder);
|
||||||
|
/**
|
||||||
|
* URI designating a long description of this image or frame. See the
|
||||||
|
* longdesc attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLongDesc();
|
||||||
|
public void setLongDesc(String longDesc);
|
||||||
|
/**
|
||||||
|
* Frame margin height, in pixels. See the marginheight attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMarginHeight();
|
||||||
|
public void setMarginHeight(String marginHeight);
|
||||||
|
/**
|
||||||
|
* Frame margin width, in pixels. See the marginwidth attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMarginWidth();
|
||||||
|
public void setMarginWidth(String marginWidth);
|
||||||
|
/**
|
||||||
|
* The frame name (object of the <code>target</code> attribute). See the
|
||||||
|
* name attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* When true, forbid user from resizing frame. See the noresize attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getNoResize();
|
||||||
|
public void setNoResize(boolean noResize);
|
||||||
|
/**
|
||||||
|
* Specify whether or not the frame should have scrollbars. See the
|
||||||
|
* scrolling attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getScrolling();
|
||||||
|
public void setScrolling(String scrolling);
|
||||||
|
/**
|
||||||
|
* A URI designating the initial frame contents. See the src attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSrc();
|
||||||
|
public void setSrc(String src);
|
||||||
|
}
|
||||||
|
|
||||||
29
java/external/src/org/w3c/dom/html/HTMLFrameSetElement.java
vendored
Normal file
29
java/external/src/org/w3c/dom/html/HTMLFrameSetElement.java
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a grid of frames. See the FRAMESET element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLFrameSetElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The number of columns of frames in the frameset. See the cols attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCols();
|
||||||
|
public void setCols(String cols);
|
||||||
|
/**
|
||||||
|
* The number of rows of frames in the frameset. See the rows attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRows();
|
||||||
|
public void setRows(String rows);
|
||||||
|
}
|
||||||
|
|
||||||
42
java/external/src/org/w3c/dom/html/HTMLHRElement.java
vendored
Normal file
42
java/external/src/org/w3c/dom/html/HTMLHRElement.java
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a horizontal rule. See the HR element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLHRElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Align the rule on the page. See the align attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Indicates to the user agent that there should be no shading in the
|
||||||
|
* rendering of this element. See the noshade attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getNoShade();
|
||||||
|
public void setNoShade(boolean noShade);
|
||||||
|
/**
|
||||||
|
* The height of the rule. See the size attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSize();
|
||||||
|
public void setSize(String size);
|
||||||
|
/**
|
||||||
|
* The width of the rule. See the width attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLHeadElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLHeadElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Document head information. See the HEAD element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLHeadElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* URI designating a metadata profile. See the profile attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getProfile();
|
||||||
|
public void setProfile(String profile);
|
||||||
|
}
|
||||||
|
|
||||||
24
java/external/src/org/w3c/dom/html/HTMLHeadingElement.java
vendored
Normal file
24
java/external/src/org/w3c/dom/html/HTMLHeadingElement.java
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For the <code>H1</code> to <code>H6</code> elements. See the H1 element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLHeadingElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Horizontal text alignment. See the align attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLHtmlElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLHtmlElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Root of an HTML document. See the HTML element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLHtmlElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Version information about the document's DTD. See the version attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVersion();
|
||||||
|
public void setVersion(String version);
|
||||||
|
}
|
||||||
|
|
||||||
76
java/external/src/org/w3c/dom/html/HTMLIFrameElement.java
vendored
Normal file
76
java/external/src/org/w3c/dom/html/HTMLIFrameElement.java
vendored
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inline subwindows. See the IFRAME element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLIFrameElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Aligns this object (vertically or horizontally) with respect to its
|
||||||
|
* surrounding text. See the align attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Request frame borders. See the frameborder attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getFrameBorder();
|
||||||
|
public void setFrameBorder(String frameBorder);
|
||||||
|
/**
|
||||||
|
* Frame height. See the height attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeight();
|
||||||
|
public void setHeight(String height);
|
||||||
|
/**
|
||||||
|
* URI designating a long description of this image or frame. See the
|
||||||
|
* longdesc attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLongDesc();
|
||||||
|
public void setLongDesc(String longDesc);
|
||||||
|
/**
|
||||||
|
* Frame margin height, in pixels. See the marginheight attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMarginHeight();
|
||||||
|
public void setMarginHeight(String marginHeight);
|
||||||
|
/**
|
||||||
|
* Frame margin width, in pixels. See the marginwidth attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMarginWidth();
|
||||||
|
public void setMarginWidth(String marginWidth);
|
||||||
|
/**
|
||||||
|
* The frame name (object of the <code>target</code> attribute). See the
|
||||||
|
* name attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Specify whether or not the frame should have scrollbars. See the
|
||||||
|
* scrolling attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getScrolling();
|
||||||
|
public void setScrolling(String scrolling);
|
||||||
|
/**
|
||||||
|
* A URI designating the initial frame contents. See the src attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSrc();
|
||||||
|
public void setSrc(String src);
|
||||||
|
/**
|
||||||
|
* Frame width. See the width attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
92
java/external/src/org/w3c/dom/html/HTMLImageElement.java
vendored
Normal file
92
java/external/src/org/w3c/dom/html/HTMLImageElement.java
vendored
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Embedded image. See the IMG element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLImageElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* URI designating the source of this image, for low-resolution output.
|
||||||
|
*/
|
||||||
|
public String getLowSrc();
|
||||||
|
public void setLowSrc(String lowSrc);
|
||||||
|
/**
|
||||||
|
* The name of the element (for backwards compatibility).
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Aligns this object (vertically or horizontally) with respect to its
|
||||||
|
* surrounding text. See the align attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Alternate text for user agents not rendering the normal contentof this
|
||||||
|
* element. See the alt attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlt();
|
||||||
|
public void setAlt(String alt);
|
||||||
|
/**
|
||||||
|
* Width of border around image. See the border attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBorder();
|
||||||
|
public void setBorder(String border);
|
||||||
|
/**
|
||||||
|
* Override height. See the height attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeight();
|
||||||
|
public void setHeight(String height);
|
||||||
|
/**
|
||||||
|
* Horizontal space to the left and right of this image. See the hspace
|
||||||
|
* attribute definition in HTML 4.0. This attribute is deprecated in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getHspace();
|
||||||
|
public void setHspace(String hspace);
|
||||||
|
/**
|
||||||
|
* Use server-side image map. See the ismap attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getIsMap();
|
||||||
|
public void setIsMap(boolean isMap);
|
||||||
|
/**
|
||||||
|
* URI designating a long description of this image or frame. See the
|
||||||
|
* longdesc attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLongDesc();
|
||||||
|
public void setLongDesc(String longDesc);
|
||||||
|
/**
|
||||||
|
* URI designating the source of this image. See the src attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSrc();
|
||||||
|
public void setSrc(String src);
|
||||||
|
/**
|
||||||
|
* Use client-side image map. See the usemap attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getUseMap();
|
||||||
|
public void setUseMap(String useMap);
|
||||||
|
/**
|
||||||
|
* Vertical space above and below this image. See the vspace attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVspace();
|
||||||
|
public void setVspace(String vspace);
|
||||||
|
/**
|
||||||
|
* Override width. See the width attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
151
java/external/src/org/w3c/dom/html/HTMLInputElement.java
vendored
Normal file
151
java/external/src/org/w3c/dom/html/HTMLInputElement.java
vendored
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Form control. Note. Depending upon the environmentthe page is being viewed,
|
||||||
|
* the value property may be read-only for thefile upload input type. For the
|
||||||
|
* "password" input type, the actual valuereturned may be masked to prevent
|
||||||
|
* unauthorized use. See the INPUT element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLInputElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Stores the initial control value (i.e., the initial value of
|
||||||
|
* <code>value</code>).
|
||||||
|
*/
|
||||||
|
public String getDefaultValue();
|
||||||
|
public void setDefaultValue(String defaultValue);
|
||||||
|
/**
|
||||||
|
* When <code>type</code> has the value "Radio" or "Checkbox", stores the
|
||||||
|
* initial value of the <code>checked</code> attribute.
|
||||||
|
*/
|
||||||
|
public boolean getDefaultChecked();
|
||||||
|
public void setDefaultChecked(boolean defaultChecked);
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* A comma-separated list of content types that a server processing thisform
|
||||||
|
* will handle correctly. See the accept attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccept();
|
||||||
|
public void setAccept(String accept);
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* Aligns this object (vertically or horizontally) with respect to its
|
||||||
|
* surrounding text. See the align attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Alternate text for user agents not rendering the normal contentof this
|
||||||
|
* element. See the alt attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlt();
|
||||||
|
public void setAlt(String alt);
|
||||||
|
/**
|
||||||
|
* Describes whether a radio or check box is checked, when<code>type</code>
|
||||||
|
* has the value "Radio" or "Checkbox". The value isTRUE if explicitly
|
||||||
|
* set. Represents the current state of the checkboxor radio button. See
|
||||||
|
* the checked attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getChecked();
|
||||||
|
public void setChecked(boolean checked);
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Maximum number of characters for text fields, when <code>type</code>has
|
||||||
|
* the value "Text" or "Password". See the maxlength attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getMaxLength();
|
||||||
|
public void setMaxLength(int maxLength);
|
||||||
|
/**
|
||||||
|
* Form control or object name when submitted with a form. See the name
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* This control is read-only. When <code>type</code> has the value "text"or
|
||||||
|
* "password" only. See the readonly attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getReadOnly();
|
||||||
|
public void setReadOnly(boolean readOnly);
|
||||||
|
/**
|
||||||
|
* Size information. The precise meaning is specific to each type offield.
|
||||||
|
* See the size attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSize();
|
||||||
|
public void setSize(String size);
|
||||||
|
/**
|
||||||
|
* When the <code>type</code> attribute has the value "Image", thisattribute
|
||||||
|
* specifies the location of the image to be used to decoratethe graphical
|
||||||
|
* submit button. See the src attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSrc();
|
||||||
|
public void setSrc(String src);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* The type of control created. See the type attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
/**
|
||||||
|
* Use client-side image map. See the usemap attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getUseMap();
|
||||||
|
public void setUseMap(String useMap);
|
||||||
|
/**
|
||||||
|
* The current form control value. Used for radio buttons and check boxes.
|
||||||
|
* See the value attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
/**
|
||||||
|
* Removes keyboard focus from this element.
|
||||||
|
*/
|
||||||
|
public void blur();
|
||||||
|
/**
|
||||||
|
* Gives keyboard focus to this element.
|
||||||
|
*/
|
||||||
|
public void focus();
|
||||||
|
/**
|
||||||
|
* Select the contents of the text area. For <code>INPUT</code> elements
|
||||||
|
* whose <code>type</code> attribute has one of the following values:
|
||||||
|
* "Text", "File", or "Password".
|
||||||
|
*/
|
||||||
|
public void select();
|
||||||
|
/**
|
||||||
|
* Simulate a mouse-click. For <code>INPUT</code> elements whose
|
||||||
|
* <code>type</code> attribute has one of the followingvalues: "Button",
|
||||||
|
* "Checkbox", "Radio", "Reset", or "Submit".
|
||||||
|
*/
|
||||||
|
public void click();
|
||||||
|
}
|
||||||
|
|
||||||
29
java/external/src/org/w3c/dom/html/HTMLIsIndexElement.java
vendored
Normal file
29
java/external/src/org/w3c/dom/html/HTMLIsIndexElement.java
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This element is usedfor single-line text input. See the ISINDEX element
|
||||||
|
* definition in HTML 4.0. This element is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLIsIndexElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* The prompt message. See the prompt attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getPrompt();
|
||||||
|
public void setPrompt(String prompt);
|
||||||
|
}
|
||||||
|
|
||||||
30
java/external/src/org/w3c/dom/html/HTMLLIElement.java
vendored
Normal file
30
java/external/src/org/w3c/dom/html/HTMLLIElement.java
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List item. See the LI element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLLIElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* List item bullet style. See the type attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
/**
|
||||||
|
* Reset sequence number when used in <code>OL</code> See the value
|
||||||
|
* attribute definition in HTML 4.0. This attribute is deprecated in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public int getValue();
|
||||||
|
public void setValue(int value);
|
||||||
|
}
|
||||||
|
|
||||||
34
java/external/src/org/w3c/dom/html/HTMLLabelElement.java
vendored
Normal file
34
java/external/src/org/w3c/dom/html/HTMLLabelElement.java
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Form field label text. See the LABEL element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLLabelElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* This attribute links this label with another form controlby
|
||||||
|
* <code>id</code> attribute. See the for attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHtmlFor();
|
||||||
|
public void setHtmlFor(String htmlFor);
|
||||||
|
}
|
||||||
|
|
||||||
35
java/external/src/org/w3c/dom/html/HTMLLegendElement.java
vendored
Normal file
35
java/external/src/org/w3c/dom/html/HTMLLegendElement.java
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides a caption for a <code>FIELDSET</code> grouping. See the LEGEND
|
||||||
|
* element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLLegendElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* Text alignment relative to <code>FIELDSET</code>. See the align attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
}
|
||||||
|
|
||||||
70
java/external/src/org/w3c/dom/html/HTMLLinkElement.java
vendored
Normal file
70
java/external/src/org/w3c/dom/html/HTMLLinkElement.java
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>LINK</code> element specifies a link to an externalresource, and
|
||||||
|
* defines this document's relationship to that resource(or vice versa). See
|
||||||
|
* the LINK element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLLinkElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Enables/disables the link. This is currently only used for style sheet
|
||||||
|
* links, and may be used to activate or deactivate style sheets.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* The character encoding of the resource being linked to. See the charset
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCharset();
|
||||||
|
public void setCharset(String charset);
|
||||||
|
/**
|
||||||
|
* The URI of the linked resource. See the href attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getHref();
|
||||||
|
public void setHref(String href);
|
||||||
|
/**
|
||||||
|
* Language code of the linked resource. See the hreflang attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHreflang();
|
||||||
|
public void setHreflang(String hreflang);
|
||||||
|
/**
|
||||||
|
* Designed for use with one or more target media. See the media attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMedia();
|
||||||
|
public void setMedia(String media);
|
||||||
|
/**
|
||||||
|
* Forward link type. See the rel attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRel();
|
||||||
|
public void setRel(String rel);
|
||||||
|
/**
|
||||||
|
* Reverse link type. See the rev attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRev();
|
||||||
|
public void setRev(String rev);
|
||||||
|
/**
|
||||||
|
* Frame to render the resource in. See the target attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
public void setTarget(String target);
|
||||||
|
/**
|
||||||
|
* Advisory content type. See the type attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
}
|
||||||
|
|
||||||
27
java/external/src/org/w3c/dom/html/HTMLMapElement.java
vendored
Normal file
27
java/external/src/org/w3c/dom/html/HTMLMapElement.java
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Client-side image map. See the MAP element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLMapElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The list of areas defined for the image map.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getAreas();
|
||||||
|
/**
|
||||||
|
* Names the map (for use with <code>usemap</code>). See the name attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
}
|
||||||
|
|
||||||
24
java/external/src/org/w3c/dom/html/HTMLMenuElement.java
vendored
Normal file
24
java/external/src/org/w3c/dom/html/HTMLMenuElement.java
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Menu list. See the MENU element definition in HTML 4.0. This element is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLMenuElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Reduce spacing between list items. See the compact attribute definition
|
||||||
|
* in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getCompact();
|
||||||
|
public void setCompact(boolean compact);
|
||||||
|
}
|
||||||
|
|
||||||
39
java/external/src/org/w3c/dom/html/HTMLMetaElement.java
vendored
Normal file
39
java/external/src/org/w3c/dom/html/HTMLMetaElement.java
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This contains generic meta-information about the document. See the META
|
||||||
|
* element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLMetaElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Associated information. See the content attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getContent();
|
||||||
|
public void setContent(String content);
|
||||||
|
/**
|
||||||
|
* HTTP response header name. See the http-equiv attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHttpEquiv();
|
||||||
|
public void setHttpEquiv(String httpEquiv);
|
||||||
|
/**
|
||||||
|
* Meta information name. See the name attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Select form of content. See the scheme attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getScheme();
|
||||||
|
public void setScheme(String scheme);
|
||||||
|
}
|
||||||
|
|
||||||
30
java/external/src/org/w3c/dom/html/HTMLModElement.java
vendored
Normal file
30
java/external/src/org/w3c/dom/html/HTMLModElement.java
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Notice of modification to part of a document. See the INS and DEL
|
||||||
|
* element definitions in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLModElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* A URI designating a document that describes the reason forthe change. See
|
||||||
|
* the cite attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCite();
|
||||||
|
public void setCite(String cite);
|
||||||
|
/**
|
||||||
|
* The date and time of the change. See the datetime attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getDateTime();
|
||||||
|
public void setDateTime(String dateTime);
|
||||||
|
}
|
||||||
|
|
||||||
35
java/external/src/org/w3c/dom/html/HTMLOListElement.java
vendored
Normal file
35
java/external/src/org/w3c/dom/html/HTMLOListElement.java
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ordered list. See the OL element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLOListElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Reduce spacing between list items. See the compact attribute definition
|
||||||
|
* in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getCompact();
|
||||||
|
public void setCompact(boolean compact);
|
||||||
|
/**
|
||||||
|
* Starting sequence number. See the start attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getStart();
|
||||||
|
public void setStart(int start);
|
||||||
|
/**
|
||||||
|
* Numbering style. See the type attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
}
|
||||||
|
|
||||||
129
java/external/src/org/w3c/dom/html/HTMLObjectElement.java
vendored
Normal file
129
java/external/src/org/w3c/dom/html/HTMLObjectElement.java
vendored
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generic embedded object. Note. In principle, allproperties on the object
|
||||||
|
* element are read-write but in someenvironments some properties may be
|
||||||
|
* read-only once the underlyingobject is instantiated. See the OBJECT
|
||||||
|
* element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLObjectElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* Applet class file. See the <code>code</code> attribute for
|
||||||
|
* HTMLAppletElement.
|
||||||
|
*/
|
||||||
|
public String getCode();
|
||||||
|
public void setCode(String code);
|
||||||
|
/**
|
||||||
|
* Aligns this object (vertically or horizontally) with respect to its
|
||||||
|
* surrounding text. See the align attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Space-separated list of archives. See the archive attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getArchive();
|
||||||
|
public void setArchive(String archive);
|
||||||
|
/**
|
||||||
|
* Width of border around the object. See the border attribute definition in
|
||||||
|
* HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBorder();
|
||||||
|
public void setBorder(String border);
|
||||||
|
/**
|
||||||
|
* Base URI for <code>classid</code>, <code>data</code>, and
|
||||||
|
* <code>archive</code> attributes. See the codebase attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCodeBase();
|
||||||
|
public void setCodeBase(String codeBase);
|
||||||
|
/**
|
||||||
|
* Content type for data downloaded via <code>classid</code> attribute. See
|
||||||
|
* the codetype attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCodeType();
|
||||||
|
public void setCodeType(String codeType);
|
||||||
|
/**
|
||||||
|
* A URI specifying the location of the object's data. See the data
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getData();
|
||||||
|
public void setData(String data);
|
||||||
|
/**
|
||||||
|
* Declare (for future reference), but do not instantiate, thisobject. See
|
||||||
|
* the declare attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDeclare();
|
||||||
|
public void setDeclare(boolean declare);
|
||||||
|
/**
|
||||||
|
* Override height. See the height attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeight();
|
||||||
|
public void setHeight(String height);
|
||||||
|
/**
|
||||||
|
* Horizontal space to the left and right of this image, applet, or object.
|
||||||
|
* See the hspace attribute definition in HTML 4.0. This attribute is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHspace();
|
||||||
|
public void setHspace(String hspace);
|
||||||
|
/**
|
||||||
|
* Form control or object name when submitted with a form. See the name
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Message to render while loading the object. See the standby attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getStandby();
|
||||||
|
public void setStandby(String standby);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* Content type for data downloaded via <code>data</code> attribute. See the
|
||||||
|
* type attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
/**
|
||||||
|
* Use client-side image map. See the usemap attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getUseMap();
|
||||||
|
public void setUseMap(String useMap);
|
||||||
|
/**
|
||||||
|
* Vertical space above and below this image, applet, or object. See the
|
||||||
|
* vspace attribute definition in HTML 4.0. This attribute is deprecated in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVspace();
|
||||||
|
public void setVspace(String vspace);
|
||||||
|
/**
|
||||||
|
* Override width. See the width attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
30
java/external/src/org/w3c/dom/html/HTMLOptGroupElement.java
vendored
Normal file
30
java/external/src/org/w3c/dom/html/HTMLOptGroupElement.java
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Group options together in logical subdivisions. See the OPTGROUP element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLOptGroupElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Assigns a label to this option group. See the label attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLabel();
|
||||||
|
public void setLabel(String label);
|
||||||
|
}
|
||||||
|
|
||||||
59
java/external/src/org/w3c/dom/html/HTMLOptionElement.java
vendored
Normal file
59
java/external/src/org/w3c/dom/html/HTMLOptionElement.java
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A selectable choice. See the OPTION element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLOptionElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* Stores the initial value of the <code>selected</code> attribute.
|
||||||
|
*/
|
||||||
|
public boolean getDefaultSelected();
|
||||||
|
public void setDefaultSelected(boolean defaultSelected);
|
||||||
|
/**
|
||||||
|
* The text contained within the option element.
|
||||||
|
*/
|
||||||
|
public String getText();
|
||||||
|
/**
|
||||||
|
* The index of this <code>OPTION</code> in its parent <code>SELECT</code>.
|
||||||
|
*/
|
||||||
|
public int getIndex();
|
||||||
|
public void setIndex(int index);
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Option label for use in hierarchical menus. See the label attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getLabel();
|
||||||
|
public void setLabel(String label);
|
||||||
|
/**
|
||||||
|
* Means that this option is initially selected. See the selected attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getSelected();
|
||||||
|
/**
|
||||||
|
* The current form control value. See the value attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLParagraphElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLParagraphElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paragraphs. See the P element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLParagraphElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Horizontal text alignment. See the align attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
}
|
||||||
|
|
||||||
43
java/external/src/org/w3c/dom/html/HTMLParamElement.java
vendored
Normal file
43
java/external/src/org/w3c/dom/html/HTMLParamElement.java
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parameters fed to the <code>OBJECT</code> element. See the PARAM element
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLParamElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The name of a run-time parameter. See the name attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Content type for the <code>value</code> attribute when
|
||||||
|
* <code>valuetype</code> has the value "ref". See the type attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
/**
|
||||||
|
* The value of a run-time parameter. See the value attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
/**
|
||||||
|
* Information about the meaning of the <code>value</code> attributevalue.
|
||||||
|
* See the valuetype attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getValueType();
|
||||||
|
public void setValueType(String valueType);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLPreElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLPreElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Preformatted text. See the PRE element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLPreElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Fixed width for content. See the width attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getWidth();
|
||||||
|
public void setWidth(int width);
|
||||||
|
}
|
||||||
|
|
||||||
24
java/external/src/org/w3c/dom/html/HTMLQuoteElement.java
vendored
Normal file
24
java/external/src/org/w3c/dom/html/HTMLQuoteElement.java
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For the <code>Q</code> and <code>BLOCKQUOTE</code> elements. See the Q
|
||||||
|
* element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLQuoteElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* A URI designating a document that designates a source document or
|
||||||
|
* message. See the cite attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCite();
|
||||||
|
public void setCite(String cite);
|
||||||
|
}
|
||||||
|
|
||||||
56
java/external/src/org/w3c/dom/html/HTMLScriptElement.java
vendored
Normal file
56
java/external/src/org/w3c/dom/html/HTMLScriptElement.java
vendored
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Script statements. See the SCRIPT element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLScriptElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The script content of the element.
|
||||||
|
*/
|
||||||
|
public String getText();
|
||||||
|
public void setText(String text);
|
||||||
|
/**
|
||||||
|
* Reserved for future use.
|
||||||
|
*/
|
||||||
|
public String getHtmlFor();
|
||||||
|
public void setHtmlFor(String htmlFor);
|
||||||
|
/**
|
||||||
|
* Reserved for future use.
|
||||||
|
*/
|
||||||
|
public String getEvent();
|
||||||
|
public void setEvent(String event);
|
||||||
|
/**
|
||||||
|
* The character encoding of the linked resource. See the charset attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCharset();
|
||||||
|
public void setCharset(String charset);
|
||||||
|
/**
|
||||||
|
* Indicates that the user agent can defer processing of the script. See
|
||||||
|
* the defer attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDefer();
|
||||||
|
public void setDefer(boolean defer);
|
||||||
|
/**
|
||||||
|
* URI designating an external script. See the src attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSrc();
|
||||||
|
public void setSrc(String src);
|
||||||
|
/**
|
||||||
|
* The content type of the script language. See the type attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
}
|
||||||
|
|
||||||
100
java/external/src/org/w3c/dom/html/HTMLSelectElement.java
vendored
Normal file
100
java/external/src/org/w3c/dom/html/HTMLSelectElement.java
vendored
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The select element allows the selection of an option. The containedoptions
|
||||||
|
* can be directly accessed through the select element as acollection. See
|
||||||
|
* the SELECT element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLSelectElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The type of control created.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
/**
|
||||||
|
* The ordinal index of the selected option. The value -1 is returned ifno
|
||||||
|
* element is selected. If multiple options are selected, the index ofthe
|
||||||
|
* first selected option is returned.
|
||||||
|
*/
|
||||||
|
public int getSelectedIndex();
|
||||||
|
public void setSelectedIndex(int selectedIndex);
|
||||||
|
/**
|
||||||
|
* The current form control value.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
/**
|
||||||
|
* The number of options in this <code>SELECT</code>.
|
||||||
|
*/
|
||||||
|
public int getLength();
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* The collection of <code>OPTION</code> elements contained by this element.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getOptions();
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* If true, multiple <code>OPTION</code> elements may be selected in this
|
||||||
|
* <code>SELECT</code>. See the multiple attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getMultiple();
|
||||||
|
public void setMultiple(boolean multiple);
|
||||||
|
/**
|
||||||
|
* Form control or object name when submitted with a form. See the name
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* Number of visible rows. See the size attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getSize();
|
||||||
|
public void setSize(int size);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* Add a new element to the collection of <code>OPTION</code> elementsfor
|
||||||
|
* this <code>SELECT</code>.
|
||||||
|
* @param element The element to add.
|
||||||
|
* @param before The element to insert before, or NULL for the head of the
|
||||||
|
* list.
|
||||||
|
*/
|
||||||
|
public void add(HTMLElement element,
|
||||||
|
HTMLElement before);
|
||||||
|
/**
|
||||||
|
* Remove an element from the collection of <code>OPTION</code> elementsfor
|
||||||
|
* this <code>SELECT</code>. Does nothing if no element has the givenindex.
|
||||||
|
* @param index The index of the item to remove.
|
||||||
|
*/
|
||||||
|
public void remove(int index);
|
||||||
|
/**
|
||||||
|
* Removes keyboard focus from this element.
|
||||||
|
*/
|
||||||
|
public void blur();
|
||||||
|
/**
|
||||||
|
* Gives keyboard focus to this element.
|
||||||
|
*/
|
||||||
|
public void focus();
|
||||||
|
}
|
||||||
|
|
||||||
36
java/external/src/org/w3c/dom/html/HTMLStyleElement.java
vendored
Normal file
36
java/external/src/org/w3c/dom/html/HTMLStyleElement.java
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Style information. A more detailed style sheet object model is planned to be
|
||||||
|
* defined in a separate document. See the STYLE element definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLStyleElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Enables/disables the style sheet.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Designed for use with one or more target media. See the media attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getMedia();
|
||||||
|
public void setMedia(String media);
|
||||||
|
/**
|
||||||
|
* The style sheet language (Internet media type). See the type attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
}
|
||||||
|
|
||||||
23
java/external/src/org/w3c/dom/html/HTMLTableCaptionElement.java
vendored
Normal file
23
java/external/src/org/w3c/dom/html/HTMLTableCaptionElement.java
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Table caption See the CAPTION element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableCaptionElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Caption alignment with respect to the table. See the align attribute
|
||||||
|
* definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
}
|
||||||
|
|
||||||
107
java/external/src/org/w3c/dom/html/HTMLTableCellElement.java
vendored
Normal file
107
java/external/src/org/w3c/dom/html/HTMLTableCellElement.java
vendored
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The object used to represent the <code>TH</code> and <code>TD</code>
|
||||||
|
* elements. See the TD element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableCellElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The index of this cell in the row.
|
||||||
|
*/
|
||||||
|
public int getCellIndex();
|
||||||
|
public void setCellIndex(int cellIndex);
|
||||||
|
/**
|
||||||
|
* Abbreviation for header cells. See the abbr attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getAbbr();
|
||||||
|
public void setAbbr(String abbr);
|
||||||
|
/**
|
||||||
|
* Horizontal alignment of data in cell. See the align attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Names group of related headers. See the axis attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getAxis();
|
||||||
|
public void setAxis(String axis);
|
||||||
|
/**
|
||||||
|
* Cell background color. See the bgcolor attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBgColor();
|
||||||
|
public void setBgColor(String bgColor);
|
||||||
|
/**
|
||||||
|
* Alignment character for cells in a column. See the char attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCh();
|
||||||
|
public void setCh(String ch);
|
||||||
|
/**
|
||||||
|
* Offset of alignment character. See the charoff attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getChOff();
|
||||||
|
public void setChOff(String chOff);
|
||||||
|
/**
|
||||||
|
* Number of columns spanned by cell. See the colspan attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getColSpan();
|
||||||
|
public void setColSpan(int colSpan);
|
||||||
|
/**
|
||||||
|
* List of <code>id</code> attribute values for header cells. See the
|
||||||
|
* headers attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeaders();
|
||||||
|
public void setHeaders(String headers);
|
||||||
|
/**
|
||||||
|
* Cell height. See the height attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getHeight();
|
||||||
|
public void setHeight(String height);
|
||||||
|
/**
|
||||||
|
* Suppress word wrapping. See the nowrap attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getNoWrap();
|
||||||
|
public void setNoWrap(boolean noWrap);
|
||||||
|
/**
|
||||||
|
* Number of rows spanned by cell. See the rowspan attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getRowSpan();
|
||||||
|
public void setRowSpan(int rowSpan);
|
||||||
|
/**
|
||||||
|
* Scope covered by header cells. See the scope attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public String getScope();
|
||||||
|
public void setScope(String scope);
|
||||||
|
/**
|
||||||
|
* Vertical alignment of data in cell. See the valign attribute definition
|
||||||
|
* in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVAlign();
|
||||||
|
public void setVAlign(String vAlign);
|
||||||
|
/**
|
||||||
|
* Cell width. See the width attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
53
java/external/src/org/w3c/dom/html/HTMLTableColElement.java
vendored
Normal file
53
java/external/src/org/w3c/dom/html/HTMLTableColElement.java
vendored
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Regroups the <code>COL</code> and <code>COLGROUP</code> elements. See the
|
||||||
|
* COL element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableColElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Horizontal alignment of cell data in column. See the align attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Alignment character for cells in a column. See the char attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCh();
|
||||||
|
public void setCh(String ch);
|
||||||
|
/**
|
||||||
|
* Offset of alignment character. See the charoff attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getChOff();
|
||||||
|
public void setChOff(String chOff);
|
||||||
|
/**
|
||||||
|
* Indicates the number of columns in a group or affected by a grouping. See
|
||||||
|
* the span attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getSpan();
|
||||||
|
public void setSpan(int span);
|
||||||
|
/**
|
||||||
|
* Vertical alignment of cell data in column. See the valign attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVAlign();
|
||||||
|
public void setVAlign(String vAlign);
|
||||||
|
/**
|
||||||
|
* Default column width. See the width attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
}
|
||||||
|
|
||||||
142
java/external/src/org/w3c/dom/html/HTMLTableElement.java
vendored
Normal file
142
java/external/src/org/w3c/dom/html/HTMLTableElement.java
vendored
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The create* and delete* methods on the table allow authors to constructand
|
||||||
|
* modify tables. HTML 4.0 specifies that only one of each of the
|
||||||
|
* <code>CAPTION</code>, <code>THEAD</code>, and <code>TFOOT</code>elements
|
||||||
|
* may exist in a table. Therefore, if one exists, and thecreateTHead() or
|
||||||
|
* createTFoot() method is called, the method returnsthe existing THead or
|
||||||
|
* TFoot element. See the TABLE element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Returns the table's <code>CAPTION</code>, or void if none exists.
|
||||||
|
*/
|
||||||
|
public HTMLTableCaptionElement getCaption();
|
||||||
|
public void setCaption(HTMLTableCaptionElement caption);
|
||||||
|
/**
|
||||||
|
* Returns the table's <code>THEAD</code>, or <code>null</code> if none
|
||||||
|
* exists.
|
||||||
|
*/
|
||||||
|
public HTMLTableSectionElement getTHead();
|
||||||
|
public void setTHead(HTMLTableSectionElement tHead);
|
||||||
|
/**
|
||||||
|
* Returns the table's <code>TFOOT</code>, or <code>null</code> if none
|
||||||
|
* exists.
|
||||||
|
*/
|
||||||
|
public HTMLTableSectionElement getTFoot();
|
||||||
|
public void setTFoot(HTMLTableSectionElement tFoot);
|
||||||
|
/**
|
||||||
|
* Returns a collection of all the rows in the table, including all in
|
||||||
|
* <code>THEAD</code>, <code>TFOOT</code>, all <code>TBODY</code> elements.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getRows();
|
||||||
|
/**
|
||||||
|
* Returns a collection of the defined table bodies.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getTBodies();
|
||||||
|
/**
|
||||||
|
* Specifies the table's position with respect to the rest of the document.
|
||||||
|
* See the align attribute definition in HTML 4.0. This attribute is
|
||||||
|
* deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Cell background color. See the bgcolor attribute definition in HTML 4.0.
|
||||||
|
* This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBgColor();
|
||||||
|
public void setBgColor(String bgColor);
|
||||||
|
/**
|
||||||
|
* The width of the border around the table. See the border attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBorder();
|
||||||
|
public void setBorder(String border);
|
||||||
|
/**
|
||||||
|
* Specifies the horizontal and vertical space between cell content andcell
|
||||||
|
* borders. See the cellpadding attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCellPadding();
|
||||||
|
public void setCellPadding(String cellPadding);
|
||||||
|
/**
|
||||||
|
* Specifies the horizontal and vertical separation between cells. See the
|
||||||
|
* cellspacing attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCellSpacing();
|
||||||
|
public void setCellSpacing(String cellSpacing);
|
||||||
|
/**
|
||||||
|
* Specifies which external table borders to render. See the frame attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getFrame();
|
||||||
|
public void setFrame(String frame);
|
||||||
|
/**
|
||||||
|
* Specifies which internal table borders to render. See the rules attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getRules();
|
||||||
|
public void setRules(String rules);
|
||||||
|
/**
|
||||||
|
* Supplementary description about the purpose or structureof a table. See
|
||||||
|
* the summary attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getSummary();
|
||||||
|
public void setSummary(String summary);
|
||||||
|
/**
|
||||||
|
* Specifies the desired table width. See the width attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getWidth();
|
||||||
|
public void setWidth(String width);
|
||||||
|
/**
|
||||||
|
* Create a table header row or return an existing one.
|
||||||
|
* @return A new table header element (<code>THEAD</code>).
|
||||||
|
*/
|
||||||
|
public HTMLElement createTHead();
|
||||||
|
/**
|
||||||
|
* Delete the header from the table, if one exists.
|
||||||
|
*/
|
||||||
|
public void deleteTHead();
|
||||||
|
/**
|
||||||
|
* Create a table footer row or return an existing one.
|
||||||
|
* @return A footer element (<code>TFOOT</code>).
|
||||||
|
*/
|
||||||
|
public HTMLElement createTFoot();
|
||||||
|
/**
|
||||||
|
* Delete the footer from the table, if one exists.
|
||||||
|
*/
|
||||||
|
public void deleteTFoot();
|
||||||
|
/**
|
||||||
|
* Create a new table caption object or return an existing one.
|
||||||
|
* @return A <code>CAPTION</code> element.
|
||||||
|
*/
|
||||||
|
public HTMLElement createCaption();
|
||||||
|
/**
|
||||||
|
* Delete the table caption, if one exists.
|
||||||
|
*/
|
||||||
|
public void deleteCaption();
|
||||||
|
/**
|
||||||
|
* Insert a new empty row in the table.Note. A table row cannot be empty
|
||||||
|
* according to HTML 4.0 Recommendation.
|
||||||
|
* @param index The row number where to insert a new row.
|
||||||
|
* @return The newly created row.
|
||||||
|
*/
|
||||||
|
public HTMLElement insertRow(int index);
|
||||||
|
/**
|
||||||
|
* Delete a table row.
|
||||||
|
* @param index The index of the row to be deleted.
|
||||||
|
*/
|
||||||
|
public void deleteRow(int index);
|
||||||
|
}
|
||||||
|
|
||||||
74
java/external/src/org/w3c/dom/html/HTMLTableRowElement.java
vendored
Normal file
74
java/external/src/org/w3c/dom/html/HTMLTableRowElement.java
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A row in a table. See the TR element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableRowElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The index of this row, relative to the entire table.
|
||||||
|
*/
|
||||||
|
public int getRowIndex();
|
||||||
|
public void setRowIndex(int rowIndex);
|
||||||
|
/**
|
||||||
|
* The index of this row, relative to the current section(<code>THEAD</code>
|
||||||
|
* , <code>TFOOT</code>, or <code>TBODY</code>).
|
||||||
|
*/
|
||||||
|
public int getSectionRowIndex();
|
||||||
|
public void setSectionRowIndex(int sectionRowIndex);
|
||||||
|
/**
|
||||||
|
* The collection of cells in this row.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getCells();
|
||||||
|
public void setCells(HTMLCollection cells);
|
||||||
|
/**
|
||||||
|
* Horizontal alignment of data within cells of this row. See the align
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Background color for rows. See the bgcolor attribute definition in HTML
|
||||||
|
* 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getBgColor();
|
||||||
|
public void setBgColor(String bgColor);
|
||||||
|
/**
|
||||||
|
* Alignment character for cells in a column. See the char attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCh();
|
||||||
|
public void setCh(String ch);
|
||||||
|
/**
|
||||||
|
* Offset of alignment character. See the charoff attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getChOff();
|
||||||
|
public void setChOff(String chOff);
|
||||||
|
/**
|
||||||
|
* Vertical alignment of data within cells of this row. See the valign
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getVAlign();
|
||||||
|
public void setVAlign(String vAlign);
|
||||||
|
/**
|
||||||
|
* Insert an empty <code>TD</code> cell into this row.
|
||||||
|
* @param index The place to insert the cell.
|
||||||
|
* @return The newly created cell.
|
||||||
|
*/
|
||||||
|
public HTMLElement insertCell(int index);
|
||||||
|
/**
|
||||||
|
* Delete a cell from the current row.
|
||||||
|
* @param index The index of the cell to delete.
|
||||||
|
*/
|
||||||
|
public void deleteCell(int index);
|
||||||
|
}
|
||||||
|
|
||||||
56
java/external/src/org/w3c/dom/html/HTMLTableSectionElement.java
vendored
Normal file
56
java/external/src/org/w3c/dom/html/HTMLTableSectionElement.java
vendored
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>THEAD</code>, <code>TFOOT</code>, and <code>TBODY</code>elements.
|
||||||
|
*/
|
||||||
|
public interface HTMLTableSectionElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Horizontal alignment of data in cells. See the <code>align</code>
|
||||||
|
* attribute for HTMLTheadElement for details.
|
||||||
|
*/
|
||||||
|
public String getAlign();
|
||||||
|
public void setAlign(String align);
|
||||||
|
/**
|
||||||
|
* Alignment character for cells in a column. See the char attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getCh();
|
||||||
|
public void setCh(String ch);
|
||||||
|
/**
|
||||||
|
* Offset of alignment character. See the charoff attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getChOff();
|
||||||
|
public void setChOff(String chOff);
|
||||||
|
/**
|
||||||
|
* Vertical alignment of data in cells.See the <code>valign</code>attribute
|
||||||
|
* for HTMLTheadElement for details.
|
||||||
|
*/
|
||||||
|
public String getVAlign();
|
||||||
|
public void setVAlign(String vAlign);
|
||||||
|
/**
|
||||||
|
* The collection of rows in this table section.
|
||||||
|
*/
|
||||||
|
public HTMLCollection getRows();
|
||||||
|
/**
|
||||||
|
* Insert a row into this section.
|
||||||
|
* @param index The row number where to insert a new row.
|
||||||
|
* @return The newly created row.
|
||||||
|
*/
|
||||||
|
public HTMLElement insertRow(int index);
|
||||||
|
/**
|
||||||
|
* Delete a row from this section.
|
||||||
|
* @param index The index of the row to be deleted.
|
||||||
|
*/
|
||||||
|
public void deleteRow(int index);
|
||||||
|
}
|
||||||
|
|
||||||
92
java/external/src/org/w3c/dom/html/HTMLTextAreaElement.java
vendored
Normal file
92
java/external/src/org/w3c/dom/html/HTMLTextAreaElement.java
vendored
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Multi-line text field. See the TEXTAREA element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTextAreaElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Stores the initial control value (i.e., the initial value of
|
||||||
|
* <code>value</code>).
|
||||||
|
*/
|
||||||
|
public String getDefaultValue();
|
||||||
|
public void setDefaultValue(String defaultValue);
|
||||||
|
/**
|
||||||
|
* Returns the <code>FORM</code> element containing this control.Returns
|
||||||
|
* null if this control is not within the context of a form.
|
||||||
|
*/
|
||||||
|
public HTMLFormElement getForm();
|
||||||
|
/**
|
||||||
|
* A single character access key to give access to the form control. See the
|
||||||
|
* accesskey attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getAccessKey();
|
||||||
|
public void setAccessKey(String accessKey);
|
||||||
|
/**
|
||||||
|
* Width of control (in characters). See the cols attribute definition in
|
||||||
|
* HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getCols();
|
||||||
|
public void setCols(int cols);
|
||||||
|
/**
|
||||||
|
* The control is unavailable in this context. See the disabled attribute
|
||||||
|
* definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getDisabled();
|
||||||
|
public void setDisabled(boolean disabled);
|
||||||
|
/**
|
||||||
|
* Form control or object name when submitted with a form. See the name
|
||||||
|
* attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getName();
|
||||||
|
public void setName(String name);
|
||||||
|
/**
|
||||||
|
* This control is read-only. See the readonly attribute definition in HTML
|
||||||
|
* 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getReadOnly();
|
||||||
|
public void setReadOnly(boolean readOnly);
|
||||||
|
/**
|
||||||
|
* Number of text rows. See the rows attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getRows();
|
||||||
|
public void setRows(int rows);
|
||||||
|
/**
|
||||||
|
* Index that represents the element's position in the tabbing order. See
|
||||||
|
* the tabindex attribute definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public int getTabIndex();
|
||||||
|
public void setTabIndex(int tabIndex);
|
||||||
|
/**
|
||||||
|
* The type of this form control.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
/**
|
||||||
|
* The current textual content of the multi-line text field. If the entirety
|
||||||
|
* of the data can not fit into a single wstring, the implementation may
|
||||||
|
* truncate the data.
|
||||||
|
*/
|
||||||
|
public String getValue();
|
||||||
|
public void setValue(String value);
|
||||||
|
/**
|
||||||
|
* Removes keyboard focus from this element.
|
||||||
|
*/
|
||||||
|
public void blur();
|
||||||
|
/**
|
||||||
|
* Gives keyboard focus to this element.
|
||||||
|
*/
|
||||||
|
public void focus();
|
||||||
|
/**
|
||||||
|
* Select the contents of the <code>TEXTAREA</code>.
|
||||||
|
*/
|
||||||
|
public void select();
|
||||||
|
}
|
||||||
|
|
||||||
22
java/external/src/org/w3c/dom/html/HTMLTitleElement.java
vendored
Normal file
22
java/external/src/org/w3c/dom/html/HTMLTitleElement.java
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The document title. See the TITLE element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLTitleElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* The specified title as a string.
|
||||||
|
*/
|
||||||
|
public String getText();
|
||||||
|
public void setText(String text);
|
||||||
|
}
|
||||||
|
|
||||||
29
java/external/src/org/w3c/dom/html/HTMLUListElement.java
vendored
Normal file
29
java/external/src/org/w3c/dom/html/HTMLUListElement.java
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
|
||||||
|
* Technology, Institut National de Recherche en Informatique et en
|
||||||
|
* Automatique, Keio University).
|
||||||
|
* All Rights Reserved. http://www.w3.org/Consortium/Legal/
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.w3c.dom.html;
|
||||||
|
|
||||||
|
import org.w3c.dom.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unordered list. See the UL element definition in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public interface HTMLUListElement extends HTMLElement {
|
||||||
|
/**
|
||||||
|
* Reduce spacing between list items. See the compact attribute definition
|
||||||
|
* in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public boolean getCompact();
|
||||||
|
public void setCompact(boolean compact);
|
||||||
|
/**
|
||||||
|
* Bullet style. See the type attribute definition in HTML 4.0. This
|
||||||
|
* attribute is deprecated in HTML 4.0.
|
||||||
|
*/
|
||||||
|
public String getType();
|
||||||
|
public void setType(String type);
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user