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

hazendaz / httpunit / 656

06 Dec 2025 09:11PM UTC coverage: 80.452% (+0.02%) from 80.435%
656

push

github

hazendaz
[maven-release-plugin] prepare for next development iteration

3213 of 4105 branches covered (78.27%)

Branch coverage included in aggregate %.

8245 of 10137 relevant lines covered (81.34%)

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
 * MIT License
3
 *
4
 * Copyright 2011-2025 Russell Gold
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
7
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation
8
 * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
9
 * to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
 *
11
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions
12
 * of the Software.
13
 *
14
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
15
 * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
17
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18
 * DEALINGS IN THE SOFTWARE.
19
 */
20
package com.meterware.httpunit.dom;
21

22
import org.w3c.dom.html.HTMLAppletElement;
23

24
/**
25
 * The Class HTMLAppletElementImpl.
26
 */
27
public class HTMLAppletElementImpl extends HTMLElementImpl implements HTMLAppletElement {
1✔
28

29
    /** The Constant serialVersionUID. */
30
    private static final long serialVersionUID = 1L;
31

32
    @Override
33
    ElementImpl create() {
34
        return new HTMLAppletElementImpl();
1✔
35
    }
36

37
    /**
38
     * Gets the align.
39
     *
40
     * @return the align
41
     */
42
    @Override
43
    public String getAlign() {
44
        return getAttributeWithNoDefault("align");
1✔
45
    }
46

47
    /**
48
     * Sets the align.
49
     *
50
     * @param align
51
     *            the new align
52
     */
53
    @Override
54
    public void setAlign(String align) {
55
        setAttribute("align", align);
1✔
56
    }
1✔
57

58
    /**
59
     * Gets the alt.
60
     *
61
     * @return the alt
62
     */
63
    @Override
64
    public String getAlt() {
65
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
66
    }
67

68
    /**
69
     * Sets the alt.
70
     *
71
     * @param alt
72
     *            the new alt
73
     */
74
    @Override
75
    public void setAlt(String alt) {
76
        // To change body of implemented methods use File | Settings | File Templates.
77
    }
×
78

79
    /**
80
     * Gets the archive.
81
     *
82
     * @return the archive
83
     */
84
    @Override
85
    public String getArchive() {
86
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
87
    }
88

89
    /**
90
     * Sets the archive.
91
     *
92
     * @param archive
93
     *            the new archive
94
     */
95
    @Override
96
    public void setArchive(String archive) {
97
        // To change body of implemented methods use File | Settings | File Templates.
98
    }
×
99

100
    /**
101
     * Gets the code.
102
     *
103
     * @return the code
104
     */
105
    @Override
106
    public String getCode() {
107
        return getAttributeWithNoDefault("code");
1✔
108
    }
109

110
    /**
111
     * Sets the code.
112
     *
113
     * @param code
114
     *            the new code
115
     */
116
    @Override
117
    public void setCode(String code) {
118
        setAttribute("code", code);
1✔
119
    }
1✔
120

121
    /**
122
     * get the codebase of this applet modified for bug report [ 1895501 ] Handling no codebase attribute in APPLET tag.
123
     *
124
     * @return the code base
125
     */
126
    @Override
127
    public String getCodeBase() {
128
        return getAttributeWithDefault("codebase", ".");
1✔
129
    }
130

131
    /**
132
     * Sets the code base.
133
     *
134
     * @param codeBase
135
     *            the new code base
136
     */
137
    @Override
138
    public void setCodeBase(String codeBase) {
139
        setAttribute("codebase", codeBase);
1✔
140
    }
1✔
141

142
    /**
143
     * Gets the height.
144
     *
145
     * @return the height
146
     */
147
    @Override
148
    public String getHeight() {
149
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
150
    }
151

152
    /**
153
     * Sets the height.
154
     *
155
     * @param height
156
     *            the new height
157
     */
158
    @Override
159
    public void setHeight(String height) {
160
        // To change body of implemented methods use File | Settings | File Templates.
161
    }
×
162

163
    /**
164
     * Gets the hspace.
165
     *
166
     * @return the hspace
167
     */
168
    @Override
169
    public String getHspace() {
170
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
171
    }
172

173
    /**
174
     * Sets the hspace.
175
     *
176
     * @param hspace
177
     *            the new hspace
178
     */
179
    @Override
180
    public void setHspace(String hspace) {
181
        // To change body of implemented methods use File | Settings | File Templates.
182
    }
×
183

184
    /**
185
     * Gets the name.
186
     *
187
     * @return the name
188
     */
189
    @Override
190
    public String getName() {
191
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
192
    }
193

194
    /**
195
     * Sets the name.
196
     *
197
     * @param name
198
     *            the new name
199
     */
200
    @Override
201
    public void setName(String name) {
202
        // To change body of implemented methods use File | Settings | File Templates.
203
    }
×
204

205
    /**
206
     * Gets the object.
207
     *
208
     * @return the object
209
     */
210
    @Override
211
    public String getObject() {
212
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
213
    }
214

215
    /**
216
     * Sets the object.
217
     *
218
     * @param object
219
     *            the new object
220
     */
221
    @Override
222
    public void setObject(String object) {
223
        // To change body of implemented methods use File | Settings | File Templates.
224
    }
×
225

226
    /**
227
     * Gets the vspace.
228
     *
229
     * @return the vspace
230
     */
231
    @Override
232
    public String getVspace() {
233
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
234
    }
235

236
    /**
237
     * Sets the vspace.
238
     *
239
     * @param vspace
240
     *            the new vspace
241
     */
242
    @Override
243
    public void setVspace(String vspace) {
244
        // To change body of implemented methods use File | Settings | File Templates.
245
    }
×
246

247
    /**
248
     * Gets the width.
249
     *
250
     * @return the width
251
     */
252
    @Override
253
    public String getWidth() {
254
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
255
    }
256

257
    /**
258
     * Sets the width.
259
     *
260
     * @param width
261
     *            the new width
262
     */
263
    @Override
264
    public void setWidth(String width) {
265
        // To change body of implemented methods use File | Settings | File Templates.
266
    }
×
267
}
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