All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLAppletElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

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.


Property Summary
 align getAlign setAlign

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.

 alt getAlt setAlt

Alternate text for user agents not rendering the normal content of this element. See the alt attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 archive getArchive setArchive

Comma-separated archive list. See the archive attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 code getCode setCode

Applet class file. See the code attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 codeBase getCodeBase setCodeBase

Optional base URI for applet. See the codebase attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 height getHeight setHeight

Override height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 hspace getHspace setHspace

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.

 name getName setName

The name of the applet. See the name attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 object getObject setObject

Serialized applet file. See the object attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 vspace getVspace setVspace

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.

 width getWidth setWidth

Override width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

  */ public interface HTMLAppletElement extends HTMLElement { /** Assigns the value of the align property. */ void setAlign (String align); /** * Returns the value of the align property. */ String getAlign (); /** Assigns the value of the alt property. */ void setAlt (String alt); /** * Returns the value of the alt property. */ String getAlt (); /** Assigns the value of the archive property. */ void setArchive (String archive); /** * Returns the value of the archive property. */ String getArchive (); /** Assigns the value of the code property. */ void setCode (String code); /** * Returns the value of the code property. */ String getCode (); /** Assigns the value of the codeBase property. */ void setCodeBase (String codeBase); /** * Returns the value of the codeBase property. */ String getCodeBase (); /** Assigns the value of the height property. */ void setHeight (String height); /** * Returns the value of the height property. */ String getHeight (); /** Assigns the value of the hspace property. */ void setHspace (String hspace); /** * Returns the value of the hspace property. */ String getHspace (); /** Assigns the value of the name property. */ void setName (String name); /** * Returns the value of the name property. */ String getName (); /** Assigns the value of the object property. */ void setObject (String object); /** * Returns the value of the object property. */ String getObject (); /** Assigns the value of the vspace property. */ void setVspace (String vspace); /** * Returns the value of the vspace property. */ String getVspace (); /** Assigns the value of the width property. */ void setWidth (String width); /** * Returns the value of the width property. */ String getWidth (); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy