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.*;
016
017/**
018 * DTO for an HTML {@doc ExtHTML5.grouping-content#the-div-element <div>}
019 * element.
020 *
021 * <ul class='seealso'>
022 *    <li class='link'>{@doc DtoHtml5}
023 * </ul>
024 */
025@Bean(typeName="div")
026public class Div extends HtmlElementMixed {
027
028   /**
029    * Creates an empty {@link Div} element.
030    */
031   public Div() {}
032
033   /**
034    * Creates a {@link Div} element with the specified child nodes.
035    *
036    * @param children The child nodes.
037    */
038   public Div(Object...children) {
039      children(children);
040   }
041
042   //-----------------------------------------------------------------------------------------------------------------
043   // Overridden methods
044   //-----------------------------------------------------------------------------------------------------------------
045
046   @Override /* HtmlElement */
047   public final Div _class(String _class) {
048      super._class(_class);
049      return this;
050   }
051
052   @Override /* HtmlElement */
053   public final Div id(String id) {
054      super.id(id);
055      return this;
056   }
057
058   @Override /* HtmlElement */
059   public final Div style(String style) {
060      super.style(style);
061      return this;
062   }
063
064   @Override /* HtmlElementMixed */
065   public Div children(Object...children) {
066      super.children(children);
067      return this;
068   }
069
070   @Override /* HtmlElementMixed */
071   public Div child(Object child) {
072      super.child(child);
073      return this;
074   }
075}