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 <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#the-noscript-element"><noscript></a> 019 * element. 020 * 021 * <h5 class='section'>See Also:</h5> 022 * <ul class='doctree'> 023 * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#juneau-dto.HTML5'>Overview > juneau-dto > HTML5</a> 024 * </ul> 025 */ 026@Bean(typeName="noscript") 027public class Noscript extends HtmlElementMixed { 028 029 //-------------------------------------------------------------------------------- 030 // Overridden methods 031 //-------------------------------------------------------------------------------- 032 033 034 @Override /* HtmlElement */ 035 public final Noscript _class(String _class) { 036 super._class(_class); 037 return this; 038 } 039 040 @Override /* HtmlElement */ 041 public final Noscript id(String id) { 042 super.id(id); 043 return this; 044 } 045 046 @Override /* HtmlElement */ 047 public final Noscript style(String style) { 048 super.style(style); 049 return this; 050 } 051 052 @Override /* HtmlElementMixed */ 053 public Noscript children(Object...children) { 054 super.children(children); 055 return this; 056 } 057 058 @Override /* HtmlElementMixed */ 059 public Noscript child(Object child) { 060 super.child(child); 061 return this; 062 } 063}