001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.juneau.bean.html5; 018 019import org.apache.juneau.*; 020 021/** 022 * Defines the Java classes that make up the HTML DTO type dictionary. 023 * 024 * <h5 class='section'>See Also:</h5><ul> 025 * <li class='link'><a class="doclink" href="https://juneau.apache.org/docs/topics/JuneauBeanHtml5">juneau-bean-html5</a> 026 * </ul> 027 * 028 * @serial exclude 029 */ 030public class HtmlBeanDictionary extends BeanDictionaryList { 031 private static final long serialVersionUID = 1L; 032 033 /** 034 * Constructor. 035 */ 036 public HtmlBeanDictionary() { 037 super(A.class, Abbr.class, Address.class, Area.class, Article.class, Aside.class, Audio.class, B.class, Base.class, Bdi.class, Bdo.class, Blockquote.class, Body.class, Br.class, Button.class, 038 Canvas.class, Caption.class, Cite.class, Code.class, Col.class, Colgroup.class, Data.class, Datalist.class, Dd.class, Del.class, Dfn.class, Div.class, Dl.class, Dt.class, Em.class, 039 Embed.class, Fieldset.class, Figcaption.class, Figure.class, Footer.class, Form.class, H1.class, H2.class, H3.class, H4.class, H5.class, H6.class, Head.class, Header.class, Hr.class, 040 Html.class, I.class, Iframe.class, Img.class, Input.class, Ins.class, Kbd.class, Keygen.class, Label.class, Legend.class, Li.class, Link.class, Main.class, Map.class, Mark.class, 041 Meta.class, Meter.class, Nav.class, Noscript.class, Object_.class, Ol.class, Optgroup.class, Option.class, Output.class, P.class, Param.class, Pre.class, Progress.class, Q.class, Rb.class, 042 Rp.class, Rt.class, Rtc.class, Ruby.class, S.class, Samp.class, Script.class, Section.class, Select.class, Small.class, Source.class, Span.class, Strong.class, Style.class, Sub.class, 043 Sup.class, Table.class, Tbody.class, Td.class, Template.class, Textarea.class, Tfoot.class, Th.class, Thead.class, Time.class, Title.class, Tr.class, Track.class, U.class, Ul.class, 044 Var.class, Video.class, Wbr.class); 045 } 046}