~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLIFrameElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Charles Majola
  • Date: 2005-12-09 11:58:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051209115821-ppifmmty1jv59hik
Tags: 2.6.2-3ubuntu3
Fix Build depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
3
 
 * Technology, Institut National de Recherche en Informatique et en
4
 
 * Automatique, Keio University).
5
 
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
6
 
 */
7
 
 
8
 
package org.w3c.dom.html;
9
 
 
10
 
import org.w3c.dom.*;
11
 
 
12
 
/**
13
 
 * Inline subwindows. See the IFRAME element definition in HTML 4.0.
14
 
 */
15
 
public interface HTMLIFrameElement extends HTMLElement {
16
 
  /**
17
 
   * Aligns this object (vertically or horizontally) with respect to its 
18
 
   * surrounding text. See the align attribute definition in HTML 4.0. This 
19
 
   * attribute is deprecated in HTML 4.0.
20
 
   */
21
 
  public String             getAlign();
22
 
  public void               setAlign(String align);
23
 
  /**
24
 
   * Request frame borders. See the frameborder attribute definition in HTML 
25
 
   * 4.0.
26
 
   */
27
 
  public String             getFrameBorder();
28
 
  public void               setFrameBorder(String frameBorder);
29
 
  /**
30
 
   * Frame height. See the height attribute definition in HTML 4.0.
31
 
   */
32
 
  public String             getHeight();
33
 
  public void               setHeight(String height);
34
 
  /**
35
 
   * URI designating a long description of this image or frame. See the 
36
 
   * longdesc attribute definition in HTML 4.0.
37
 
   */
38
 
  public String             getLongDesc();
39
 
  public void               setLongDesc(String longDesc);
40
 
  /**
41
 
   * Frame margin height, in pixels. See the marginheight attribute definition 
42
 
   * in HTML 4.0.
43
 
   */
44
 
  public String             getMarginHeight();
45
 
  public void               setMarginHeight(String marginHeight);
46
 
  /**
47
 
   * Frame margin width, in pixels. See the marginwidth attribute definition 
48
 
   * in HTML 4.0.
49
 
   */
50
 
  public String             getMarginWidth();
51
 
  public void               setMarginWidth(String marginWidth);
52
 
  /**
53
 
   * The frame name (object of the <code>target</code> attribute). See the 
54
 
   * name attribute definition in HTML 4.0.
55
 
   */
56
 
  public String             getName();
57
 
  public void               setName(String name);
58
 
  /**
59
 
   * Specify whether or not the frame should have scrollbars. See the 
60
 
   * scrolling attribute definition in HTML 4.0.
61
 
   */
62
 
  public String             getScrolling();
63
 
  public void               setScrolling(String scrolling);
64
 
  /**
65
 
   * A URI designating the initial frame contents. See the src attribute 
66
 
   * definition in HTML 4.0.
67
 
   */
68
 
  public String             getSrc();
69
 
  public void               setSrc(String src);
70
 
  /**
71
 
   * Frame width. See the width attribute definition in HTML 4.0.
72
 
   */
73
 
  public String             getWidth();
74
 
  public void               setWidth(String width);
75
 
}
76