This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


org.w3c.dom.html
interface HTMLFrameElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLFrameElement
extends HTMLElement

Create a frame. See the FRAME element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.


Field Summary
 
Fields inherited from class org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Method Summary
 Document

          The document this frame contains, if there is any and it is available, or null otherwise.
 String

          Request frame borders.
 String

          URI designating a long description of this image or frame.
 String

          Frame margin height, in pixels.
 String

          Frame margin width, in pixels.
 String

          The frame name (object of the target attribute).
 boolean

          When true, forbid user from resizing frame.
 String

          Specify whether or not the frame should have scrollbars.
 String

          A URI designating the initial frame contents.
 void
setFrameBorder(String frameBorder)

          
 void
setLongDesc(String longDesc)

          
 void
setMarginHeight(String marginHeight)

          
 void
setMarginWidth(String marginWidth)

          
 void

          
 void
setNoResize(boolean noResize)

          
 void
setScrolling(String scrolling)

          
 void

          
 
Methods inherited from class org.w3c.dom.html.HTMLElement
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle
 
Methods inherited from class org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
 
Methods inherited from class org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
 

Method Detail

getContentDocument

public Document getContentDocument()
The document this frame contains, if there is any and it is available, or null otherwise.


getFrameBorder

public String getFrameBorder()
Request frame borders. See the frameborder attribute definition in HTML 4.0.


getLongDesc

public String getLongDesc()
URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.


getMarginHeight

public String getMarginHeight()
Frame margin height, in pixels. See the marginheight attribute definition in HTML 4.0.


getMarginWidth

public String getMarginWidth()
Frame margin width, in pixels. See the marginwidth attribute definition in HTML 4.0.


getName

public String getName()
The frame name (object of the target attribute). See the name attribute definition in HTML 4.0.


getNoResize

public boolean getNoResize()
When true, forbid user from resizing frame. See the noresize attribute definition in HTML 4.0.


getScrolling

public String getScrolling()
Specify whether or not the frame should have scrollbars. See the scrolling attribute definition in HTML 4.0.


getSrc

public String getSrc()
A URI designating the initial frame contents. See the src attribute definition in HTML 4.0.


setFrameBorder

public void setFrameBorder(String frameBorder)
Parameters:
frameBorder

setLongDesc

public void setLongDesc(String longDesc)
Parameters:
longDesc

setMarginHeight

public void setMarginHeight(String marginHeight)
Parameters:
marginHeight

setMarginWidth

public void setMarginWidth(String marginWidth)
Parameters:
marginWidth

setName

public void setName(String name)
Parameters:
name

setNoResize

public void setNoResize(boolean noResize)
Parameters:
noResize

setScrolling

public void setScrolling(String scrolling)
Parameters:
scrolling

setSrc

public void setSrc(String src)
Parameters:
src


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.