• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

hazendaz / httpunit / 755

14 Feb 2026 07:14PM UTC coverage: 80.526%. Remained the same
755

push

github

hazendaz
[ci] Fix badge

3213 of 4105 branches covered (78.27%)

Branch coverage included in aggregate %.

8245 of 10124 relevant lines covered (81.44%)

0.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.74
/src/main/java/com/meterware/httpunit/dom/HTMLAppletElementImpl.java
1
/*
2
 * SPDX-License-Identifier: MIT
3
 * See LICENSE file for details.
4
 *
5
 * Copyright 2000-2026 Russell Gold
6
 * Copyright 2021-2000 hazendaz
7
 */
8
package com.meterware.httpunit.dom;
9

10
import org.w3c.dom.html.HTMLAppletElement;
11

12
/**
13
 * The Class HTMLAppletElementImpl.
14
 */
15
public class HTMLAppletElementImpl extends HTMLElementImpl implements HTMLAppletElement {
1✔
16

17
    /** The Constant serialVersionUID. */
18
    private static final long serialVersionUID = 1L;
19

20
    @Override
21
    ElementImpl create() {
22
        return new HTMLAppletElementImpl();
1✔
23
    }
24

25
    /**
26
     * Gets the align.
27
     *
28
     * @return the align
29
     */
30
    @Override
31
    public String getAlign() {
32
        return getAttributeWithNoDefault("align");
1✔
33
    }
34

35
    /**
36
     * Sets the align.
37
     *
38
     * @param align
39
     *            the new align
40
     */
41
    @Override
42
    public void setAlign(String align) {
43
        setAttribute("align", align);
1✔
44
    }
1✔
45

46
    /**
47
     * Gets the alt.
48
     *
49
     * @return the alt
50
     */
51
    @Override
52
    public String getAlt() {
53
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
54
    }
55

56
    /**
57
     * Sets the alt.
58
     *
59
     * @param alt
60
     *            the new alt
61
     */
62
    @Override
63
    public void setAlt(String alt) {
64
        // To change body of implemented methods use File | Settings | File Templates.
65
    }
×
66

67
    /**
68
     * Gets the archive.
69
     *
70
     * @return the archive
71
     */
72
    @Override
73
    public String getArchive() {
74
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
75
    }
76

77
    /**
78
     * Sets the archive.
79
     *
80
     * @param archive
81
     *            the new archive
82
     */
83
    @Override
84
    public void setArchive(String archive) {
85
        // To change body of implemented methods use File | Settings | File Templates.
86
    }
×
87

88
    /**
89
     * Gets the code.
90
     *
91
     * @return the code
92
     */
93
    @Override
94
    public String getCode() {
95
        return getAttributeWithNoDefault("code");
1✔
96
    }
97

98
    /**
99
     * Sets the code.
100
     *
101
     * @param code
102
     *            the new code
103
     */
104
    @Override
105
    public void setCode(String code) {
106
        setAttribute("code", code);
1✔
107
    }
1✔
108

109
    /**
110
     * get the codebase of this applet modified for bug report [ 1895501 ] Handling no codebase attribute in APPLET tag.
111
     *
112
     * @return the code base
113
     */
114
    @Override
115
    public String getCodeBase() {
116
        return getAttributeWithDefault("codebase", ".");
1✔
117
    }
118

119
    /**
120
     * Sets the code base.
121
     *
122
     * @param codeBase
123
     *            the new code base
124
     */
125
    @Override
126
    public void setCodeBase(String codeBase) {
127
        setAttribute("codebase", codeBase);
1✔
128
    }
1✔
129

130
    /**
131
     * Gets the height.
132
     *
133
     * @return the height
134
     */
135
    @Override
136
    public String getHeight() {
137
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
138
    }
139

140
    /**
141
     * Sets the height.
142
     *
143
     * @param height
144
     *            the new height
145
     */
146
    @Override
147
    public void setHeight(String height) {
148
        // To change body of implemented methods use File | Settings | File Templates.
149
    }
×
150

151
    /**
152
     * Gets the hspace.
153
     *
154
     * @return the hspace
155
     */
156
    @Override
157
    public String getHspace() {
158
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
159
    }
160

161
    /**
162
     * Sets the hspace.
163
     *
164
     * @param hspace
165
     *            the new hspace
166
     */
167
    @Override
168
    public void setHspace(String hspace) {
169
        // To change body of implemented methods use File | Settings | File Templates.
170
    }
×
171

172
    /**
173
     * Gets the name.
174
     *
175
     * @return the name
176
     */
177
    @Override
178
    public String getName() {
179
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
180
    }
181

182
    /**
183
     * Sets the name.
184
     *
185
     * @param name
186
     *            the new name
187
     */
188
    @Override
189
    public void setName(String name) {
190
        // To change body of implemented methods use File | Settings | File Templates.
191
    }
×
192

193
    /**
194
     * Gets the object.
195
     *
196
     * @return the object
197
     */
198
    @Override
199
    public String getObject() {
200
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
201
    }
202

203
    /**
204
     * Sets the object.
205
     *
206
     * @param object
207
     *            the new object
208
     */
209
    @Override
210
    public void setObject(String object) {
211
        // To change body of implemented methods use File | Settings | File Templates.
212
    }
×
213

214
    /**
215
     * Gets the vspace.
216
     *
217
     * @return the vspace
218
     */
219
    @Override
220
    public String getVspace() {
221
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
222
    }
223

224
    /**
225
     * Sets the vspace.
226
     *
227
     * @param vspace
228
     *            the new vspace
229
     */
230
    @Override
231
    public void setVspace(String vspace) {
232
        // To change body of implemented methods use File | Settings | File Templates.
233
    }
×
234

235
    /**
236
     * Gets the width.
237
     *
238
     * @return the width
239
     */
240
    @Override
241
    public String getWidth() {
242
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
243
    }
244

245
    /**
246
     * Sets the width.
247
     *
248
     * @param width
249
     *            the new width
250
     */
251
    @Override
252
    public void setWidth(String width) {
253
        // To change body of implemented methods use File | Settings | File Templates.
254
    }
×
255
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc