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 org.apache.juneau.annotation.*;
016import org.apache.juneau.internal.*;
017
018/**
019 * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#the-colgroup-element">&lt;colgroup&gt;</a>
020 * element.
021 *
022 * <h5 class='section'>See Also:</h5><ul>
023 *    <li class='link'><a class="doclink" href="../../../../../index.html#jd.Html5">Overview &gt; juneau-dto &gt; HTML5</a>
024 * </ul>
025 */
026@Bean(typeName="colgroup")
027@FluentSetters
028public class Colgroup extends HtmlElementContainer {
029
030   /**
031    * Creates an empty {@link Colgroup} element.
032    */
033   public Colgroup() {}
034
035   /**
036    * Creates a {@link Colgroup} element with the specified child nodes.
037    *
038    * @param children The child nodes.
039    */
040   public Colgroup(Object...children) {
041      children(children);
042   }
043
044   /**
045    * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-colgroup-span">span</a> attribute.
046    *
047    * <p>
048    * Number of columns spanned by the element.
049    *
050    * @param span
051    *    The new value for this attribute.
052    *    Typically a {@link Number} or {@link String}.
053    * @return This object.
054    */
055   public final Colgroup span(Object span) {
056      attr("span", span);
057      return this;
058   }
059
060
061   //-----------------------------------------------------------------------------------------------------------------
062   // Overridden methods
063   //-----------------------------------------------------------------------------------------------------------------
064
065   // <FluentSetters>
066
067   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
068   public Colgroup _class(String _class) {
069      super._class(_class);
070      return this;
071   }
072
073   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
074   public Colgroup accesskey(String accesskey) {
075      super.accesskey(accesskey);
076      return this;
077   }
078
079   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
080   public Colgroup contenteditable(Object contenteditable) {
081      super.contenteditable(contenteditable);
082      return this;
083   }
084
085   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
086   public Colgroup dir(String dir) {
087      super.dir(dir);
088      return this;
089   }
090
091   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
092   public Colgroup hidden(Object hidden) {
093      super.hidden(hidden);
094      return this;
095   }
096
097   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
098   public Colgroup id(String id) {
099      super.id(id);
100      return this;
101   }
102
103   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
104   public Colgroup lang(String lang) {
105      super.lang(lang);
106      return this;
107   }
108
109   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
110   public Colgroup onabort(String onabort) {
111      super.onabort(onabort);
112      return this;
113   }
114
115   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
116   public Colgroup onblur(String onblur) {
117      super.onblur(onblur);
118      return this;
119   }
120
121   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
122   public Colgroup oncancel(String oncancel) {
123      super.oncancel(oncancel);
124      return this;
125   }
126
127   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
128   public Colgroup oncanplay(String oncanplay) {
129      super.oncanplay(oncanplay);
130      return this;
131   }
132
133   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
134   public Colgroup oncanplaythrough(String oncanplaythrough) {
135      super.oncanplaythrough(oncanplaythrough);
136      return this;
137   }
138
139   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
140   public Colgroup onchange(String onchange) {
141      super.onchange(onchange);
142      return this;
143   }
144
145   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
146   public Colgroup onclick(String onclick) {
147      super.onclick(onclick);
148      return this;
149   }
150
151   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
152   public Colgroup oncuechange(String oncuechange) {
153      super.oncuechange(oncuechange);
154      return this;
155   }
156
157   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
158   public Colgroup ondblclick(String ondblclick) {
159      super.ondblclick(ondblclick);
160      return this;
161   }
162
163   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
164   public Colgroup ondurationchange(String ondurationchange) {
165      super.ondurationchange(ondurationchange);
166      return this;
167   }
168
169   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
170   public Colgroup onemptied(String onemptied) {
171      super.onemptied(onemptied);
172      return this;
173   }
174
175   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
176   public Colgroup onended(String onended) {
177      super.onended(onended);
178      return this;
179   }
180
181   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
182   public Colgroup onerror(String onerror) {
183      super.onerror(onerror);
184      return this;
185   }
186
187   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
188   public Colgroup onfocus(String onfocus) {
189      super.onfocus(onfocus);
190      return this;
191   }
192
193   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
194   public Colgroup oninput(String oninput) {
195      super.oninput(oninput);
196      return this;
197   }
198
199   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
200   public Colgroup oninvalid(String oninvalid) {
201      super.oninvalid(oninvalid);
202      return this;
203   }
204
205   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
206   public Colgroup onkeydown(String onkeydown) {
207      super.onkeydown(onkeydown);
208      return this;
209   }
210
211   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
212   public Colgroup onkeypress(String onkeypress) {
213      super.onkeypress(onkeypress);
214      return this;
215   }
216
217   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
218   public Colgroup onkeyup(String onkeyup) {
219      super.onkeyup(onkeyup);
220      return this;
221   }
222
223   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
224   public Colgroup onload(String onload) {
225      super.onload(onload);
226      return this;
227   }
228
229   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
230   public Colgroup onloadeddata(String onloadeddata) {
231      super.onloadeddata(onloadeddata);
232      return this;
233   }
234
235   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
236   public Colgroup onloadedmetadata(String onloadedmetadata) {
237      super.onloadedmetadata(onloadedmetadata);
238      return this;
239   }
240
241   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
242   public Colgroup onloadstart(String onloadstart) {
243      super.onloadstart(onloadstart);
244      return this;
245   }
246
247   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
248   public Colgroup onmousedown(String onmousedown) {
249      super.onmousedown(onmousedown);
250      return this;
251   }
252
253   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
254   public Colgroup onmouseenter(String onmouseenter) {
255      super.onmouseenter(onmouseenter);
256      return this;
257   }
258
259   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
260   public Colgroup onmouseleave(String onmouseleave) {
261      super.onmouseleave(onmouseleave);
262      return this;
263   }
264
265   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
266   public Colgroup onmousemove(String onmousemove) {
267      super.onmousemove(onmousemove);
268      return this;
269   }
270
271   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
272   public Colgroup onmouseout(String onmouseout) {
273      super.onmouseout(onmouseout);
274      return this;
275   }
276
277   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
278   public Colgroup onmouseover(String onmouseover) {
279      super.onmouseover(onmouseover);
280      return this;
281   }
282
283   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
284   public Colgroup onmouseup(String onmouseup) {
285      super.onmouseup(onmouseup);
286      return this;
287   }
288
289   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
290   public Colgroup onmousewheel(String onmousewheel) {
291      super.onmousewheel(onmousewheel);
292      return this;
293   }
294
295   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
296   public Colgroup onpause(String onpause) {
297      super.onpause(onpause);
298      return this;
299   }
300
301   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
302   public Colgroup onplay(String onplay) {
303      super.onplay(onplay);
304      return this;
305   }
306
307   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
308   public Colgroup onplaying(String onplaying) {
309      super.onplaying(onplaying);
310      return this;
311   }
312
313   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
314   public Colgroup onprogress(String onprogress) {
315      super.onprogress(onprogress);
316      return this;
317   }
318
319   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
320   public Colgroup onratechange(String onratechange) {
321      super.onratechange(onratechange);
322      return this;
323   }
324
325   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
326   public Colgroup onreset(String onreset) {
327      super.onreset(onreset);
328      return this;
329   }
330
331   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
332   public Colgroup onresize(String onresize) {
333      super.onresize(onresize);
334      return this;
335   }
336
337   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
338   public Colgroup onscroll(String onscroll) {
339      super.onscroll(onscroll);
340      return this;
341   }
342
343   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
344   public Colgroup onseeked(String onseeked) {
345      super.onseeked(onseeked);
346      return this;
347   }
348
349   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
350   public Colgroup onseeking(String onseeking) {
351      super.onseeking(onseeking);
352      return this;
353   }
354
355   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
356   public Colgroup onselect(String onselect) {
357      super.onselect(onselect);
358      return this;
359   }
360
361   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
362   public Colgroup onshow(String onshow) {
363      super.onshow(onshow);
364      return this;
365   }
366
367   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
368   public Colgroup onstalled(String onstalled) {
369      super.onstalled(onstalled);
370      return this;
371   }
372
373   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
374   public Colgroup onsubmit(String onsubmit) {
375      super.onsubmit(onsubmit);
376      return this;
377   }
378
379   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
380   public Colgroup onsuspend(String onsuspend) {
381      super.onsuspend(onsuspend);
382      return this;
383   }
384
385   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
386   public Colgroup ontimeupdate(String ontimeupdate) {
387      super.ontimeupdate(ontimeupdate);
388      return this;
389   }
390
391   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
392   public Colgroup ontoggle(String ontoggle) {
393      super.ontoggle(ontoggle);
394      return this;
395   }
396
397   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
398   public Colgroup onvolumechange(String onvolumechange) {
399      super.onvolumechange(onvolumechange);
400      return this;
401   }
402
403   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
404   public Colgroup onwaiting(String onwaiting) {
405      super.onwaiting(onwaiting);
406      return this;
407   }
408
409   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
410   public Colgroup spellcheck(Object spellcheck) {
411      super.spellcheck(spellcheck);
412      return this;
413   }
414
415   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
416   public Colgroup style(String style) {
417      super.style(style);
418      return this;
419   }
420
421   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
422   public Colgroup tabindex(Object tabindex) {
423      super.tabindex(tabindex);
424      return this;
425   }
426
427   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
428   public Colgroup title(String title) {
429      super.title(title);
430      return this;
431   }
432
433   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
434   public Colgroup translate(Object translate) {
435      super.translate(translate);
436      return this;
437   }
438
439   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementContainer */
440   public Colgroup child(Object child) {
441      super.child(child);
442      return this;
443   }
444
445   @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementContainer */
446   public Colgroup children(Object...children) {
447      super.children(children);
448      return this;
449   }
450
451   // </FluentSetters>
452}