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 HTML5.forms#the-fieldset-element <fieldset>}
019 * element.
020 *
021 * <ul class='seealso'>
022 *    <li class='link'>{@doc juneau-dto.HTML5}
023 * </ul>
024*/
025@Bean(typeName="fieldset")
026public class Fieldset extends HtmlElementMixed {
027
028   /**
029    * {@doc HTML5.forms#attr-fieldset-disabled disabled} attribute.
030    *
031    * <p>
032    * Whether the form control is disabled.
033    *
034    * @param disabled
035    *    The new value for this attribute.
036    *    Typically a {@link Boolean} or {@link String}.
037    * @return This object (for method chaining).
038    */
039   public final Fieldset disabled(Boolean disabled) {
040      attr("disabled", deminimize(disabled, "disabled"));
041      return this;
042   }
043
044   /**
045    * {@doc HTML5.forms#attr-fae-form form} attribute.
046    *
047    * <p>
048    * Associates the control with a form element.
049    *
050    * @param form The new value for this attribute.
051    * @return This object (for method chaining).
052    */
053   public final Fieldset form(String form) {
054      attr("form", form);
055      return this;
056   }
057
058   /**
059    * {@doc HTML5.forms#attr-fe-name name} attribute.
060    *
061    * <p>
062    * Name of form control to use for form submission and in the form.elements API.
063    *
064    * @param name The new value for this attribute.
065    * @return This object (for method chaining).
066    */
067   public final Fieldset name(String name) {
068      attr("name", name);
069      return this;
070   }
071
072
073   //-----------------------------------------------------------------------------------------------------------------
074   // Overridden methods
075   //-----------------------------------------------------------------------------------------------------------------
076
077   @Override /* HtmlElement */
078   public final Fieldset _class(String _class) {
079      super._class(_class);
080      return this;
081   }
082
083   @Override /* HtmlElement */
084   public final Fieldset id(String id) {
085      super.id(id);
086      return this;
087   }
088
089   @Override /* HtmlElement */
090   public final Fieldset style(String style) {
091      super.style(style);
092      return this;
093   }
094
095   @Override /* HtmlElementMixed */
096   public Fieldset children(Object...children) {
097      super.children(children);
098      return this;
099   }
100
101   @Override /* HtmlElementMixed */
102   public Fieldset child(Object child) {
103      super.child(child);
104      return this;
105   }
106}