elemental.html.IFrameElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package elemental.html;
import elemental.dom.Element;
import elemental.svg.SVGDocument;
import elemental.dom.Document;
import elemental.events.*;
import elemental.util.*;
import elemental.dom.*;
import elemental.html.*;
import elemental.css.*;
import elemental.stylesheets.*;
import java.util.Date;
/**
* DOM iframe objects expose the HTMLIFrameElement (or HTML 4 HTMLIFrameElement
) interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of inline frame elements.
*/
public interface IFrameElement extends Element {
/**
* Specifies the alignment of the frame with respect to the surrounding context.
*/
String getAlign();
void setAlign(String arg);
/**
* The active document in the inline frame's nested browsing context.
*/
Document getContentDocument();
/**
* The window proxy for the nested browsing context.
*/
Window getContentWindow();
String getFrameBorder();
void setFrameBorder(String arg);
/**
* Reflects the
height
HTML attribute, indicating the height of the frame.
*/
String getHeight();
void setHeight(String arg);
/**
* URI of a long description of the frame.
*/
String getLongDesc();
void setLongDesc(String arg);
/**
* Height of the frame margin.
*/
String getMarginHeight();
void setMarginHeight(String arg);
/**
* Width of the frame margin.
*/
String getMarginWidth();
void setMarginWidth(String arg);
/**
* Reflects the
name
HTML attribute, containing a name by which to refer to the frame.
*/
String getName();
void setName(String arg);
/**
* Reflects the
sandbox
HTML attribute, indicating extra restrictions on the behavior of the nested content.
*/
String getSandbox();
void setSandbox(String arg);
/**
* Indicates whether the browser should provide scrollbars for the frame.
*/
String getScrolling();
void setScrolling(String arg);
/**
* Reflects the
src
HTML attribute, containing the address of the content to be embedded.
*/
String getSrc();
void setSrc(String arg);
/**
* The content to display in the frame.
*/
String getSrcdoc();
void setSrcdoc(String arg);
/**
* Reflects the
width
HTML attribute, indicating the width of the frame.
*/
String getWidth();
void setWidth(String arg);
SVGDocument getSVGDocument();
}