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