001// *************************************************************************************************************************** 002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * 003// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * 004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * 005// * with the License. You may obtain a copy of the License at * 006// * * 007// * http://www.apache.org/licenses/LICENSE-2.0 * 008// * * 009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * 010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * 011// * specific language governing permissions and limitations under the License. * 012// *************************************************************************************************************************** 013package org.apache.juneau.dto.html5; 014 015import static org.apache.juneau.xml.annotation.XmlFormat.*; 016 017import org.apache.juneau.internal.*; 018import org.apache.juneau.xml.annotation.*; 019 020/** 021 * A subclass of HTML elements that have no content or end tags. 022 * 023 * <p> 024 * See <a href="https://www.w3.org/TR/html51/syntax.html#void-elements">void elements</a> 025 * 026 * <h5 class='section'>See Also:</h5><ul> 027 * <li class='link'><a class="doclink" href="../../../../../index.html#jd.Html5">Overview > juneau-dto > HTML5</a> 028 * </ul> 029 */ 030@Xml(format=VOID) 031@FluentSetters 032public class HtmlElementVoid extends HtmlElement { 033 034 // <FluentSetters> 035 036 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 037 public HtmlElementVoid _class(String _class) { 038 super._class(_class); 039 return this; 040 } 041 042 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 043 public HtmlElementVoid accesskey(String accesskey) { 044 super.accesskey(accesskey); 045 return this; 046 } 047 048 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 049 public HtmlElementVoid contenteditable(Object contenteditable) { 050 super.contenteditable(contenteditable); 051 return this; 052 } 053 054 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 055 public HtmlElementVoid dir(String dir) { 056 super.dir(dir); 057 return this; 058 } 059 060 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 061 public HtmlElementVoid hidden(Object hidden) { 062 super.hidden(hidden); 063 return this; 064 } 065 066 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 067 public HtmlElementVoid id(String id) { 068 super.id(id); 069 return this; 070 } 071 072 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 073 public HtmlElementVoid lang(String lang) { 074 super.lang(lang); 075 return this; 076 } 077 078 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 079 public HtmlElementVoid onabort(String onabort) { 080 super.onabort(onabort); 081 return this; 082 } 083 084 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 085 public HtmlElementVoid onblur(String onblur) { 086 super.onblur(onblur); 087 return this; 088 } 089 090 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 091 public HtmlElementVoid oncancel(String oncancel) { 092 super.oncancel(oncancel); 093 return this; 094 } 095 096 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 097 public HtmlElementVoid oncanplay(String oncanplay) { 098 super.oncanplay(oncanplay); 099 return this; 100 } 101 102 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 103 public HtmlElementVoid oncanplaythrough(String oncanplaythrough) { 104 super.oncanplaythrough(oncanplaythrough); 105 return this; 106 } 107 108 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 109 public HtmlElementVoid onchange(String onchange) { 110 super.onchange(onchange); 111 return this; 112 } 113 114 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 115 public HtmlElementVoid onclick(String onclick) { 116 super.onclick(onclick); 117 return this; 118 } 119 120 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 121 public HtmlElementVoid oncuechange(String oncuechange) { 122 super.oncuechange(oncuechange); 123 return this; 124 } 125 126 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 127 public HtmlElementVoid ondblclick(String ondblclick) { 128 super.ondblclick(ondblclick); 129 return this; 130 } 131 132 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 133 public HtmlElementVoid ondurationchange(String ondurationchange) { 134 super.ondurationchange(ondurationchange); 135 return this; 136 } 137 138 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 139 public HtmlElementVoid onemptied(String onemptied) { 140 super.onemptied(onemptied); 141 return this; 142 } 143 144 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 145 public HtmlElementVoid onended(String onended) { 146 super.onended(onended); 147 return this; 148 } 149 150 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 151 public HtmlElementVoid onerror(String onerror) { 152 super.onerror(onerror); 153 return this; 154 } 155 156 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 157 public HtmlElementVoid onfocus(String onfocus) { 158 super.onfocus(onfocus); 159 return this; 160 } 161 162 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 163 public HtmlElementVoid oninput(String oninput) { 164 super.oninput(oninput); 165 return this; 166 } 167 168 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 169 public HtmlElementVoid oninvalid(String oninvalid) { 170 super.oninvalid(oninvalid); 171 return this; 172 } 173 174 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 175 public HtmlElementVoid onkeydown(String onkeydown) { 176 super.onkeydown(onkeydown); 177 return this; 178 } 179 180 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 181 public HtmlElementVoid onkeypress(String onkeypress) { 182 super.onkeypress(onkeypress); 183 return this; 184 } 185 186 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 187 public HtmlElementVoid onkeyup(String onkeyup) { 188 super.onkeyup(onkeyup); 189 return this; 190 } 191 192 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 193 public HtmlElementVoid onload(String onload) { 194 super.onload(onload); 195 return this; 196 } 197 198 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 199 public HtmlElementVoid onloadeddata(String onloadeddata) { 200 super.onloadeddata(onloadeddata); 201 return this; 202 } 203 204 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 205 public HtmlElementVoid onloadedmetadata(String onloadedmetadata) { 206 super.onloadedmetadata(onloadedmetadata); 207 return this; 208 } 209 210 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 211 public HtmlElementVoid onloadstart(String onloadstart) { 212 super.onloadstart(onloadstart); 213 return this; 214 } 215 216 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 217 public HtmlElementVoid onmousedown(String onmousedown) { 218 super.onmousedown(onmousedown); 219 return this; 220 } 221 222 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 223 public HtmlElementVoid onmouseenter(String onmouseenter) { 224 super.onmouseenter(onmouseenter); 225 return this; 226 } 227 228 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 229 public HtmlElementVoid onmouseleave(String onmouseleave) { 230 super.onmouseleave(onmouseleave); 231 return this; 232 } 233 234 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 235 public HtmlElementVoid onmousemove(String onmousemove) { 236 super.onmousemove(onmousemove); 237 return this; 238 } 239 240 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 241 public HtmlElementVoid onmouseout(String onmouseout) { 242 super.onmouseout(onmouseout); 243 return this; 244 } 245 246 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 247 public HtmlElementVoid onmouseover(String onmouseover) { 248 super.onmouseover(onmouseover); 249 return this; 250 } 251 252 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 253 public HtmlElementVoid onmouseup(String onmouseup) { 254 super.onmouseup(onmouseup); 255 return this; 256 } 257 258 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 259 public HtmlElementVoid onmousewheel(String onmousewheel) { 260 super.onmousewheel(onmousewheel); 261 return this; 262 } 263 264 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 265 public HtmlElementVoid onpause(String onpause) { 266 super.onpause(onpause); 267 return this; 268 } 269 270 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 271 public HtmlElementVoid onplay(String onplay) { 272 super.onplay(onplay); 273 return this; 274 } 275 276 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 277 public HtmlElementVoid onplaying(String onplaying) { 278 super.onplaying(onplaying); 279 return this; 280 } 281 282 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 283 public HtmlElementVoid onprogress(String onprogress) { 284 super.onprogress(onprogress); 285 return this; 286 } 287 288 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 289 public HtmlElementVoid onratechange(String onratechange) { 290 super.onratechange(onratechange); 291 return this; 292 } 293 294 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 295 public HtmlElementVoid onreset(String onreset) { 296 super.onreset(onreset); 297 return this; 298 } 299 300 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 301 public HtmlElementVoid onresize(String onresize) { 302 super.onresize(onresize); 303 return this; 304 } 305 306 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 307 public HtmlElementVoid onscroll(String onscroll) { 308 super.onscroll(onscroll); 309 return this; 310 } 311 312 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 313 public HtmlElementVoid onseeked(String onseeked) { 314 super.onseeked(onseeked); 315 return this; 316 } 317 318 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 319 public HtmlElementVoid onseeking(String onseeking) { 320 super.onseeking(onseeking); 321 return this; 322 } 323 324 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 325 public HtmlElementVoid onselect(String onselect) { 326 super.onselect(onselect); 327 return this; 328 } 329 330 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 331 public HtmlElementVoid onshow(String onshow) { 332 super.onshow(onshow); 333 return this; 334 } 335 336 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 337 public HtmlElementVoid onstalled(String onstalled) { 338 super.onstalled(onstalled); 339 return this; 340 } 341 342 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 343 public HtmlElementVoid onsubmit(String onsubmit) { 344 super.onsubmit(onsubmit); 345 return this; 346 } 347 348 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 349 public HtmlElementVoid onsuspend(String onsuspend) { 350 super.onsuspend(onsuspend); 351 return this; 352 } 353 354 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 355 public HtmlElementVoid ontimeupdate(String ontimeupdate) { 356 super.ontimeupdate(ontimeupdate); 357 return this; 358 } 359 360 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 361 public HtmlElementVoid ontoggle(String ontoggle) { 362 super.ontoggle(ontoggle); 363 return this; 364 } 365 366 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 367 public HtmlElementVoid onvolumechange(String onvolumechange) { 368 super.onvolumechange(onvolumechange); 369 return this; 370 } 371 372 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 373 public HtmlElementVoid onwaiting(String onwaiting) { 374 super.onwaiting(onwaiting); 375 return this; 376 } 377 378 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 379 public HtmlElementVoid spellcheck(Object spellcheck) { 380 super.spellcheck(spellcheck); 381 return this; 382 } 383 384 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 385 public HtmlElementVoid style(String style) { 386 super.style(style); 387 return this; 388 } 389 390 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 391 public HtmlElementVoid tabindex(Object tabindex) { 392 super.tabindex(tabindex); 393 return this; 394 } 395 396 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 397 public HtmlElementVoid title(String title) { 398 super.title(title); 399 return this; 400 } 401 402 @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ 403 public HtmlElementVoid translate(Object translate) { 404 super.translate(translate); 405 return this; 406 } 407 408 // </FluentSetters> 409}