~ubuntu-branches/ubuntu/gutsy/libjaxp1.3-java/gutsy

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLObjectElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-08-03 10:30:58 UTC
  • Revision ID: james.westby@ubuntu.com-20060803103058-7jwwiqv9g8w9094d
Tags: upstream-1.3.03
ImportĀ upstreamĀ versionĀ 1.3.03

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
 * Generic embedded object. Note. In principle, allproperties on the object 
 
14
 * element are read-write but in someenvironments some properties may be 
 
15
 * read-only once the underlyingobject is instantiated. See the OBJECT 
 
16
 * element definition in HTML 4.0.
 
17
 */
 
18
public interface HTMLObjectElement extends HTMLElement {
 
19
  /**
 
20
   * Returns the <code>FORM</code> element containing this control.Returns 
 
21
   * null if this control is not within the context of a form. 
 
22
   */
 
23
  public HTMLFormElement    getForm();
 
24
  /**
 
25
   * Applet class file. See the <code>code</code> attribute for
 
26
   * HTMLAppletElement. 
 
27
   */
 
28
  public String             getCode();
 
29
  public void               setCode(String code);
 
30
  /**
 
31
   * Aligns this object (vertically or horizontally) with respect to its 
 
32
   * surrounding text. See the align attribute definition in HTML 4.0. This 
 
33
   * attribute is deprecated in HTML 4.0.
 
34
   */
 
35
  public String             getAlign();
 
36
  public void               setAlign(String align);
 
37
  /**
 
38
   * Space-separated list of archives. See the archive attribute definition in 
 
39
   * HTML 4.0.
 
40
   */
 
41
  public String             getArchive();
 
42
  public void               setArchive(String archive);
 
43
  /**
 
44
   * Width of border around the object. See the border attribute definition in 
 
45
   * HTML 4.0. This attribute is deprecated in HTML 4.0.
 
46
   */
 
47
  public String             getBorder();
 
48
  public void               setBorder(String border);
 
49
  /**
 
50
   * Base URI for <code>classid</code>, <code>data</code>, and
 
51
   * <code>archive</code> attributes. See the codebase attribute definition 
 
52
   * in HTML 4.0.
 
53
   */
 
54
  public String             getCodeBase();
 
55
  public void               setCodeBase(String codeBase);
 
56
  /**
 
57
   * Content type for data downloaded via <code>classid</code> attribute. See 
 
58
   * the codetype attribute definition in HTML 4.0.
 
59
   */
 
60
  public String             getCodeType();
 
61
  public void               setCodeType(String codeType);
 
62
  /**
 
63
   * A URI specifying the location of the object's data.  See the data 
 
64
   * attribute definition in HTML 4.0.
 
65
   */
 
66
  public String             getData();
 
67
  public void               setData(String data);
 
68
  /**
 
69
   * Declare (for future reference), but do not instantiate, thisobject. See 
 
70
   * the declare attribute definition in HTML 4.0.
 
71
   */
 
72
  public boolean            getDeclare();
 
73
  public void               setDeclare(boolean declare);
 
74
  /**
 
75
   * Override height. See the height attribute definition in HTML 4.0.
 
76
   */
 
77
  public String             getHeight();
 
78
  public void               setHeight(String height);
 
79
  /**
 
80
   * Horizontal space to the left and right of this image, applet, or object. 
 
81
   * See the hspace attribute definition in HTML 4.0. This attribute is 
 
82
   * deprecated in HTML 4.0.
 
83
   */
 
84
  public String             getHspace();
 
85
  public void               setHspace(String hspace);
 
86
  /**
 
87
   * Form control or object name when submitted with a form. See the name 
 
88
   * attribute definition in HTML 4.0.
 
89
   */
 
90
  public String             getName();
 
91
  public void               setName(String name);
 
92
  /**
 
93
   * Message to render while loading the object. See the standby attribute 
 
94
   * definition in HTML 4.0.
 
95
   */
 
96
  public String             getStandby();
 
97
  public void               setStandby(String standby);
 
98
  /**
 
99
   * Index that represents the element's position in the tabbing order. See 
 
100
   * the tabindex attribute definition in HTML 4.0.
 
101
   */
 
102
  public int                getTabIndex();
 
103
  public void               setTabIndex(int tabIndex);
 
104
  /**
 
105
   * Content type for data downloaded via <code>data</code> attribute. See the 
 
106
   * type attribute definition in HTML 4.0.
 
107
   */
 
108
  public String             getType();
 
109
  public void               setType(String type);
 
110
  /**
 
111
   * Use client-side image map. See the usemap attribute definition in HTML 
 
112
   * 4.0.
 
113
   */
 
114
  public String             getUseMap();
 
115
  public void               setUseMap(String useMap);
 
116
  /**
 
117
   * Vertical space above and below this image, applet, or object. See the 
 
118
   * vspace attribute definition in HTML 4.0. This attribute is deprecated in 
 
119
   * HTML 4.0.
 
120
   */
 
121
  public String             getVspace();
 
122
  public void               setVspace(String vspace);
 
123
  /**
 
124
   * Override width. See the width attribute definition in HTML 4.0.
 
125
   */
 
126
  public String             getWidth();
 
127
  public void               setWidth(String width);
 
128
}
 
129