org.w3c.dom.html.HTMLObjectElement Maven / Gradle / Ivy
Show all versions of dragome-js-jre Show documentation
/*
GNU LESSER GENERAL PUBLIC LICENSE
Copyright (C) 2006 The Lobo Project
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Contact info: [email protected]
*/
/*
* Copyright (c) 2003 World Wide Web Consortium,
* (Massachusetts Institute of Technology, Institut National de
* Recherche en Informatique et en Automatique, Keio University). All
* Rights Reserved. This program is distributed under the W3C's Software
* Intellectual Property License. This program is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE.
* See W3C License http://www.w3.org/Consortium/Legal/ for more details.
*/
package org.w3c.dom.html;
import org.w3c.dom.Document;
/**
* Generic embedded object.In principle, all properties on the object element
* are read-write but in some environments some properties may be read-only
* once the underlying object is instantiated. See the OBJECT element
* definition in [HTML 4.01].
* See also the Document Object Model (DOM) Level 2 HTML Specification.
*/
public interface HTMLObjectElement extends HTMLElement
{
/**
* Returns the FORM
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
attribute for
* HTMLAppletElement.
*/
public String getCode();
/**
* Applet class file. See the code
attribute for
* HTMLAppletElement.
*/
public void setCode(String code);
/**
* Space-separated list of archives. See the archive attribute definition
* in HTML 4.01.
*/
public String getArchive();
/**
* Space-separated list of archives. See the archive attribute definition
* in HTML 4.01.
*/
public void setArchive(String archive);
/**
* Base URI [IETF RFC 2396] for classid
, data
, and
* archive
attributes. See the codebase attribute definition
* in HTML 4.01.
*/
public String getCodeBase();
/**
* Base URI [IETF RFC 2396] for classid
, data
, and
* archive
attributes. See the codebase attribute definition
* in HTML 4.01.
*/
public void setCodeBase(String codeBase);
/**
* Content type for data downloaded via classid
attribute.
* See the codetype attribute definition in HTML 4.01.
*/
public String getCodeType();
/**
* Content type for data downloaded via classid
attribute.
* See the codetype attribute definition in HTML 4.01.
*/
public void setCodeType(String codeType);
/**
* A URI [IETF RFC 2396] specifying the location of the object's data. See the data
* attribute definition in HTML 4.01.
*/
public String getData();
/**
* A URI [IETF RFC 2396] specifying the location of the object's data. See the data
* attribute definition in HTML 4.01.
*/
public void setData(String data);
/**
* Declare (for future reference), but do not instantiate, this object.
* See the declare attribute definition in HTML 4.01.
*/
public boolean getDeclare();
/**
* Declare (for future reference), but do not instantiate, this object.
* See the declare attribute definition in HTML 4.01.
*/
public void setDeclare(boolean declare);
/**
* Override height. See the height attribute definition in HTML 4.01.
*/
public String getHeight();
/**
* Override height. See the height attribute definition in HTML 4.01.
*/
public void setHeight(String height);
/**
* Form control or object name when submitted with a form. See the name
* attribute definition in HTML 4.01.
*/
public String getName();
/**
* Form control or object name when submitted with a form. See the name
* attribute definition in HTML 4.01.
*/
public void setName(String name);
/**
* Message to render while loading the object. See the standby attribute
* definition in HTML 4.01.
*/
public String getStandby();
/**
* Message to render while loading the object. See the standby attribute
* definition in HTML 4.01.
*/
public void setStandby(String standby);
/**
* Index that represents the element's position in the tabbing order. See
* the tabindex attribute definition in HTML 4.01.
*/
public int getTabIndex();
/**
* Index that represents the element's position in the tabbing order. See
* the tabindex attribute definition in HTML 4.01.
*/
public void setTabIndex(int tabIndex);
/**
* Content type for data downloaded via data
attribute. See
* the type attribute definition in HTML 4.01.
*/
public String getType();
/**
* Content type for data downloaded via data
attribute. See
* the type attribute definition in HTML 4.01.
*/
public void setType(String type);
/**
* Use client-side image map. See the usemap attribute definition in HTML
* 4.01.
*/
public String getUseMap();
/**
* Use client-side image map. See the usemap attribute definition in HTML
* 4.01.
*/
public void setUseMap(String useMap);
/**
* Override width. See the width attribute definition in HTML 4.01.
*/
public String getWidth();
/**
* Override width. See the width attribute definition in HTML 4.01.
*/
public void setWidth(String width);
/**
* The document this object contains, if there is any and it is available,
* or null
otherwise.
* @since DOM Level 2
*/
public Document getContentDocument();
}