Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B90B5200C03 for ; Sat, 21 Jan 2017 23:25:29 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B7876160B5D; Sat, 21 Jan 2017 22:25:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 53280160B56 for ; Sat, 21 Jan 2017 23:25:27 +0100 (CET) Received: (qmail 57224 invoked by uid 500); 21 Jan 2017 22:25:26 -0000 Mailing-List: contact commits-help@juneau.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@juneau.incubator.apache.org Delivered-To: mailing list commits@juneau.incubator.apache.org Received: (qmail 57215 invoked by uid 99); 21 Jan 2017 22:25:26 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jan 2017 22:25:26 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 0C421180BD7 for ; Sat, 21 Jan 2017 22:25:26 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id gnBWEpt5eVmD for ; Sat, 21 Jan 2017 22:25:12 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 3215A5FCC6 for ; Sat, 21 Jan 2017 22:25:02 +0000 (UTC) Received: (qmail 56687 invoked by uid 99); 21 Jan 2017 22:25:01 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jan 2017 22:25:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 45AE8F16A5; Sat, 21 Jan 2017 22:25:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: jamesbognar@apache.org To: commits@juneau.incubator.apache.org Date: Sat, 21 Jan 2017 22:25:10 -0000 Message-Id: <0a7abf386f5b4cd782247b8abc13a2b6@git.apache.org> In-Reply-To: <3800adc8797046f29f5a6d0730062ee7@git.apache.org> References: <3800adc8797046f29f5a6d0730062ee7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/21] incubator-juneau git commit: HTML and XML serialization support improvements. archived-at: Sat, 21 Jan 2017 22:25:29 -0000 http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlElement.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlElement.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlElement.java deleted file mode 100644 index b586100..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlElement.java +++ /dev/null @@ -1,1298 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import static org.apache.juneau.xml.annotation.XmlFormat.*; - -import java.util.*; - -import org.apache.juneau.annotation.*; -import org.apache.juneau.html.*; -import org.apache.juneau.xml.annotation.*; - -/** - * Superclass for all HTML elements. - *

- * These are beans that when serialized using {@link HtmlSerializer} generate - * valid HTML5 elements. - */ -@org.apache.juneau.html.annotation.Html(asXml=true) -@SuppressWarnings("hiding") -public abstract class HtmlElement { - - /** - * The children of this element. - */ - @Xml(format=MIXED) - public List children; - - /** - * Adds a child element to this element; - * - * @param child - * @return This object (for method chaining). - */ - public HtmlElement child(Object child) { - if (children == null) - children = new LinkedList(); - children.add(child); - return this; - } - - /** - * accesskey - List of key labels. - * A key label or list of key labels with which to associate the element; each key label represents a keyboard shortcut which UAs can use to activate the element or give focus to the element. - * An ordered set of unique space-separated tokens, each of which must be exactly one Unicode code point in length. - */ - @Xml(format=ATTR) - public String accesskey; - - /** - * accesskey setter. - * @param accesskey - The new value. - * @return This object (for method chaining). - * @see #accesskey - */ - public HtmlElement accesskey(String accesskey) { - this.accesskey = accesskey; - return this; - } - - /** - * class - Set of space-separated tokens. - * A name of a classification, or list of names of classifications, to which the element belongs. - */ - @Xml(format=ATTR) - @BeanProperty(name="class") - public String _class; - - /** - * class setter. - * @param _class - The new value. - * @return This object (for method chaining). - * @see #_class - */ - public HtmlElement _class(String _class) { - this._class = _class; - return this; - } - - /** - * contenteditable - "true" or "false" or "" (empty string) or empty. - * Specifies whether the contents of the element are editable. - */ - @Xml(format=ATTR) - public String contenteditable; - - /** - * contenteditable setter. - * @param contenteditable - The new value. - * @return This object (for method chaining). - * @see #contenteditable - */ - public HtmlElement contenteditable(String contenteditable) { - this.contenteditable = contenteditable; - return this; - } - - /** - * contextmenu - ID reference. - * The value of the id attribute on the menu with which to associate the element as a context menu. - */ - @Xml(format=ATTR) - public String contextmenu; - - /** - * contextmenu setter. - * @param contextmenu - The new value. - * @return This object (for method chaining). - * @see #contextmenu - */ - public HtmlElement contextmenu(String contextmenu) { - this.contextmenu = contextmenu; - return this; - } - - /** - * dir - ltr" or "rtl" or "auto". - * Specifies the element’s text directionality. - */ - @Xml(format=ATTR) - public String dir; - - /** - * dir setter. - * @param dir - The new value. - * @return This object (for method chaining). - * @see #dir - */ - public HtmlElement dir(String dir) { - this.dir = dir; - return this; - } - - /** - * draggable - "true" or "false". - * Specifies whether the element is draggable. - */ - @Xml(format=ATTR) - public String draggable; - - /** - * draggable setter. - * @param draggable - The new value. - * @return This object (for method chaining). - * @see #draggable - */ - public HtmlElement draggable(String draggable) { - this.draggable = draggable; - return this; - } - - /** - * dropzone - Dropzone value. - * Specifies what types of content can be dropped on the element, and instructs the UA about which actions to take with content when it is dropped on the element. - * - * An unordered set of unique space-separated tokens, each of which is a case-insensitive match for one of the following: - *
    - *
  • "copy" - Indicates that dropping an accepted item on the element will result in a copy of the dragged data. - *
  • "move" - Indicates that dropping an accepted item on the element will result in the dragged data being moved to the new location. - *
  • "link" - Indicates that dropping an accepted item on the element will result in a link to the original data. - *
  • Any string with three characters or more, beginning with the literal string "string:". - * Indicates that Plain Unicode string items, of the type indicated by the part of of the keyword after the "string:" string, can be dropped on this element. - *
  • Any string with three characters or more, beginning with the literal string "file:". - * Indicates that File items, of the type indicated by the part of of the keyword after the "file:" string, can be dropped on this element. - *
- * - * The value must not have more than one of the three tokens "copy", "move", or "link". If none are specified, the element represents a copy dropzone. - */ - @Xml(format=ATTR) - public String dropzone; - - /** - * dropzone setter. - * @param dropzone - The new value. - * @return This object (for method chaining). - * @see #dropzone - */ - public HtmlElement dropzone(String dropzone) { - this.dropzone = dropzone; - return this; - } - - /** - * hidden - "hidden" or "" (empty string) or empty. - * Specifies that the element represents an element that is not yet, or is no longer, relevant. - */ - @Xml(format=ATTR) - public String hidden; - - /** - * hidden setter. - * @param hidden - The new value. - * @return This object (for method chaining). - * @see #hidden - */ - public HtmlElement hidden(String hidden) { - this.hidden = hidden; - return this; - } - - /** - * id - ID. - * A unique identifier for the element. - * There must not be multiple elements in a document that have the same id value. - * - * Value: Any string, with the following restrictions: - *
    - *
  • Must be at least one character long. - *
  • Must not contain any space characters. - *
- */ - @Xml(format=ATTR) - public String id; - - /** - * id setter. - * @param id - The new value. - * @return This object (for method chaining). - * @see #id - */ - public HtmlElement id(String id) { - this.id = id; - return this; - } - - /** - * lang - Language tag. - * Specifies the primary language for the contents of the element and for any of the element’s attributes that contain text. - * Value: A valid language tag as defined in [BCP 47]. - */ - @Xml(format=ATTR) - public String lang; - - /** - * lang setter. - * @param lang - The new value. - * @return This object (for method chaining). - * @see #lang - */ - public HtmlElement lang(String lang) { - this.lang = lang; - return this; - } - - /** - * spellcheck - "true" or "false" or "" (empty string) or empty. - * pecifies whether the element represents an element whose contents are subject to spell checking and grammar checking. - */ - @Xml(format=ATTR) - public String spellcheck; - - /** - * spellcheck setter. - * @param spellcheck - The new value. - * @return This object (for method chaining). - * @see #spellcheck - */ - public HtmlElement spellcheck(String spellcheck) { - this.spellcheck = spellcheck; - return this; - } - - /** - * style - String. - * Specifies zero or more CSS declarations that apply to the element [CSS]. - */ - @Xml(format=ATTR) - public String style; - - /** - * style setter. - * @param style - The new value. - * @return This object (for method chaining). - * @see #style - */ - public HtmlElement style(String style) { - this.style = style; - return this; - } - - /** - * tabindex - Integer. - * Specifies whether the element represents an element that is is focusable (that is, an element which is part of the sequence of focusable elements in the document), and the relative order of the element in the sequence of focusable elements in the document. - */ - @Xml(format=ATTR) - public String tabindex; - - /** - * tabindex setter. - * @param tabindex - The new value. - * @return This object (for method chaining). - * @see #tabindex - */ - public HtmlElement tabindex(String tabindex) { - this.tabindex = tabindex; - return this; - } - - /** - * title - Any value. - * Advisory information associated with the element. - */ - @Xml(format=ATTR) - public String title; - - /** - * title setter. - * @param title - The new value. - * @return This object (for method chaining). - * @see #title - */ - public HtmlElement title(String title) { - this.title = title; - return this; - } - - /** - * translate - "yes" or "no". - * Specifies whether an element’s attribute values and contents of its children are to be translated when the page is localized, or whether to leave them unchanged. - */ - @Xml(format=ATTR) - public String translate; - - /** - * translate setter. - * @param translate - The new value. - * @return This object (for method chaining). - * @see #translate - */ - public HtmlElement translate(String translate) { - this.translate = translate; - return this; - } - - /** - * onabort - functionbody. - * Load of element was aborted by the user. - */ - @Xml(format=ATTR) - public String onabort; - - /** - * onabort setter. - * @param onabort - The new value. - * @return This object (for method chaining). - * @see #onabort - */ - public HtmlElement onabort(String onabort) { - this.onabort = onabort; - return this; - } - - /** - * onblur - functionbody. - * Element lost focus. - */ - @Xml(format=ATTR) - public String onblur; - - /** - * onblur setter. - * @param onblur - The new value. - * @return This object (for method chaining). - * @see #onblur - */ - public HtmlElement onblur(String onblur) { - this.onblur = onblur; - return this; - } - - /** - * oncanplay - functionbody. - * The UA can resume playback of media data for this video or audio element, but estimates that if playback were to be started now, the video or audio could not be rendered at the current playback rate up to its end without having to stop for further buffering of content. - */ - @Xml(format=ATTR) - public String oncanplay; - - /** - * oncanplay setter. - * @param oncanplay - The new value. - * @return This object (for method chaining). - * @see #oncanplay - */ - public HtmlElement oncanplay(String oncanplay) { - this.oncanplay = oncanplay; - return this; - } - - /** - * oncanplaythrough - functionbody. - * The UA estimates that if playback were to be started now, the video or audio element could be rendered at the current playback rate all the way to its end without having to stop for further buffering. - */ - @Xml(format=ATTR) - public String oncanplaythrough; - - /** - * oncanplaythrough setter. - * @param oncanplaythrough - The new value. - * @return This object (for method chaining). - * @see #oncanplaythrough - */ - public HtmlElement oncanplaythrough(String oncanplaythrough) { - this.oncanplaythrough = oncanplaythrough; - return this; - } - - /** - * onchange - functionbody. - * User committed a change to the value of element (form control). - */ - @Xml(format=ATTR) - public String onchange; - - /** - * onchange setter. - * @param onchange - The new value. - * @return This object (for method chaining). - * @see #onchange - */ - public HtmlElement onchange(String onchange) { - this.onchange = onchange; - return this; - } - - /** - * onclick - functionbody. - * User pressed pointer button down and released pointer button over element, or otherwise activated the pointer in a manner that emulates such an action. - */ - @Xml(format=ATTR) - public String onclick; - - /** - * onclick setter. - * @param onclick - The new value. - * @return This object (for method chaining). - * @see #onclick - */ - public HtmlElement onclick(String onclick) { - this.onclick = onclick; - return this; - } - - /** - * oncontextmenu - functionbody. - * User requested the context menu for element. - */ - @Xml(format=ATTR) - public String oncontextmenu; - - /** - * oncontextmenu setter. - * @param oncontextmenu - The new value. - * @return This object (for method chaining). - * @see #oncontextmenu - */ - public HtmlElement oncontextmenu(String oncontextmenu) { - this.oncontextmenu = oncontextmenu; - return this; - } - - /** - * ondblclick - functionbody. - * User clicked pointer button twice over element, or otherwise activated the pointer in a manner that simulates such an action. - */ - @Xml(format=ATTR) - public String ondblclick; - - /** - * ondblclick setter. - * @param ondblclick - The new value. - * @return This object (for method chaining). - * @see #ondblclick - */ - public HtmlElement ondblclick(String ondblclick) { - this.ondblclick = ondblclick; - return this; - } - - /** - * ondrag - functionbody. - * User is continuing to drag element. - */ - @Xml(format=ATTR) - public String ondrag; - - /** - * ondrag setter. - * @param ondrag - The new value. - * @return This object (for method chaining). - * @see #ondrag - */ - public HtmlElement ondrag(String ondrag) { - this.ondrag = ondrag; - return this; - } - - /** - * ondragend - functionbody. - * User ended dragging element. - */ - @Xml(format=ATTR) - public String ondragend; - - /** - * ondragend setter. - * @param ondragend - The new value. - * @return This object (for method chaining). - * @see #ondragend - */ - public HtmlElement ondragend(String ondragend) { - this.ondragend = ondragend; - return this; - } - - /** - * ondragenter - functionbody. - * User’s drag operation entered element. - */ - @Xml(format=ATTR) - public String ondragenter; - - /** - * ondragenter setter. - * @param ondragenter - The new value. - * @return This object (for method chaining). - * @see #ondragenter - */ - public HtmlElement ondragenter(String ondragenter) { - this.ondragenter = ondragenter; - return this; - } - - /** - * ondragleave - functionbody. - * User’s drag operation left element. - */ - @Xml(format=ATTR) - public String ondragleave; - - /** - * ondragleave setter. - * @param ondragleave - The new value. - * @return This object (for method chaining). - * @see #ondragleave - */ - public HtmlElement ondragleave(String ondragleave) { - this.ondragleave = ondragleave; - return this; - } - - /** - * ondragover - functionbody. - * User is continuing drag operation over element. - */ - @Xml(format=ATTR) - public String ondragover; - - /** - * ondragover setter. - * @param ondragover - The new value. - * @return This object (for method chaining). - * @see #ondragover - */ - public HtmlElement ondragover(String ondragover) { - this.ondragover = ondragover; - return this; - } - - /** - * ondragstart - functionbody. - * User started dragging element. - */ - @Xml(format=ATTR) - public String ondragstart; - - /** - * ondragstart setter. - * @param ondragstart - The new value. - * @return This object (for method chaining). - * @see #ondragstart - */ - public HtmlElement ondragstart(String ondragstart) { - this.ondragstart = ondragstart; - return this; - } - - /** - * ondrop - functionbody. - * User completed drop operation over element. - */ - @Xml(format=ATTR) - public String ondrop; - - /** - * ondrop setter. - * @param ondrop - The new value. - * @return This object (for method chaining). - * @see #ondrop - */ - public HtmlElement ondrop(String ondrop) { - this.ondrop = ondrop; - return this; - } - - /** - * ondurationchange - functionbody. - * The DOM attribute duration on the video or audio element has been updated. - */ - @Xml(format=ATTR) - public String ondurationchange; - - /** - * ondurationchange setter. - * @param ondurationchange - The new value. - * @return This object (for method chaining). - * @see #ondurationchange - */ - public HtmlElement ondurationchange(String ondurationchange) { - this.ondurationchange = ondurationchange; - return this; - } - - /** - * onemptied - functionbody. - * The video or audio element has returned to the uninitialized state. - */ - @Xml(format=ATTR) - public String onemptied; - - /** - * onemptied setter. - * @param onemptied - The new value. - * @return This object (for method chaining). - * @see #onemptied - */ - public HtmlElement onemptied(String onemptied) { - this.onemptied = onemptied; - return this; - } - - /** - * onended - functionbody. - * The end of the video or audio element has been reached. - */ - @Xml(format=ATTR) - public String onended; - - /** - * onended setter. - * @param onended - The new value. - * @return This object (for method chaining). - * @see #onended - */ - public HtmlElement onended(String onended) { - this.onended = onended; - return this; - } - - /** - * onerror - functionbody. - * Element failed to load properly. - */ - @Xml(format=ATTR) - public String onerror; - - /** - * onerror setter. - * @param onerror - The new value. - * @return This object (for method chaining). - * @see #onerror - */ - public HtmlElement onerror(String onerror) { - this.onerror = onerror; - return this; - } - - /** - * onfocus - functionbody. - * Element received focus. - */ - @Xml(format=ATTR) - public String onfocus; - - /** - * onfocus setter. - * @param onfocus - The new value. - * @return This object (for method chaining). - * @see #onfocus - */ - public HtmlElement onfocus(String onfocus) { - this.onfocus = onfocus; - return this; - } - - /** - * oninput - functionbody. - * User changed the value of element (form control). - */ - @Xml(format=ATTR) - public String oninput; - - /** - * oninput setter. - * @param oninput - The new value. - * @return This object (for method chaining). - * @see #oninput - */ - public HtmlElement oninput(String oninput) { - this.oninput = oninput; - return this; - } - - /** - * oninvalid - functionbody. - * Element (form control) did not meet validity constraints. - */ - @Xml(format=ATTR) - public String oninvalid; - - /** - * oninvalid setter. - * @param oninvalid - The new value. - * @return This object (for method chaining). - * @see #oninvalid - */ - public HtmlElement oninvalid(String oninvalid) { - this.oninvalid = oninvalid; - return this; - } - - /** - * onkeydown - functionbody. - * User pressed down a key. - */ - @Xml(format=ATTR) - public String onkeydown; - - /** - * onkeydown setter. - * @param onkeydown - The new value. - * @return This object (for method chaining). - * @see #onkeydown - */ - public HtmlElement onkeydown(String onkeydown) { - this.onkeydown = onkeydown; - return this; - } - - /** - * onkeypress - functionbody. - * User pressed down a key that is associated with a character value. - */ - @Xml(format=ATTR) - public String onkeypress; - - /** - * onkeypress setter. - * @param onkeypress - The new value. - * @return This object (for method chaining). - * @see #onkeypress - */ - public HtmlElement onkeypress(String onkeypress) { - this.onkeypress = onkeypress; - return this; - } - - /** - * onkeyup - functionbody. - * User released a key. - */ - @Xml(format=ATTR) - public String onkeyup; - - /** - * onkeyup setter. - * @param onkeyup - The new value. - * @return This object (for method chaining). - * @see #onkeyup - */ - public HtmlElement onkeyup(String onkeyup) { - this.onkeyup = onkeyup; - return this; - } - - /** - * onload - functionbody. - * Element finished loading. - */ - @Xml(format=ATTR) - public String onload; - - /** - * onload setter. - * @param onload - The new value. - * @return This object (for method chaining). - * @see #onload - */ - public HtmlElement onload(String onload) { - this.onload = onload; - return this; - } - - /** - * onloadeddata - functionbody. - * UA can render the video or audio element at the current playback position for the first time. - */ - @Xml(format=ATTR) - public String onloadeddata; - - /** - * onloadeddata setter. - * @param onloadeddata - The new value. - * @return This object (for method chaining). - * @see #onloadeddata - */ - public HtmlElement onloadeddata(String onloadeddata) { - this.onloadeddata = onloadeddata; - return this; - } - - /** - * onloadedmetadata - functionbody. - * UA has just determined the duration and dimensions of the video or audio element. - */ - @Xml(format=ATTR) - public String onloadedmetadata; - - /** - * onloadedmetadata setter. - * @param onloadedmetadata - The new value. - * @return This object (for method chaining). - * @see #onloadedmetadata - */ - public HtmlElement onloadedmetadata(String onloadedmetadata) { - this.onloadedmetadata = onloadedmetadata; - return this; - } - - /** - * onloadstart - functionbody. - * UA has begun looking for media data in the video or audio element. - */ - @Xml(format=ATTR) - public String onloadstart; - - /** - * onloadstart setter. - * @param onloadstart - The new value. - * @return This object (for method chaining). - * @see #onloadstart - */ - public HtmlElement onloadstart(String onloadstart) { - this.onloadstart = onloadstart; - return this; - } - - /** - * onmousedown - functionbody. - * User pressed down pointer button over element. - */ - @Xml(format=ATTR) - public String onmousedown; - - /** - * onmousedown setter. - * @param onmousedown - The new value. - * @return This object (for method chaining). - * @see #onmousedown - */ - public HtmlElement onmousedown(String onmousedown) { - this.onmousedown = onmousedown; - return this; - } - - /** - * onmousemove - functionbody. - * User moved mouse. - */ - @Xml(format=ATTR) - public String onmousemove; - - /** - * onmousemove setter. - * @param onmousemove - The new value. - * @return This object (for method chaining). - * @see #onmousemove - */ - public HtmlElement onmousemove(String onmousemove) { - this.onmousemove = onmousemove; - return this; - } - - /** - * onmouseout - functionbody. - * User moved pointer off boundaries of element. - */ - @Xml(format=ATTR) - public String onmouseout; - - /** - * onmouseout setter. - * @param onmouseout - The new value. - * @return This object (for method chaining). - * @see #onmouseout - */ - public HtmlElement onmouseout(String onmouseout) { - this.onmouseout = onmouseout; - return this; - } - - /** - * onmouseover - functionbody. - * User moved pointer into boundaries of element or one of its descendant elements. - */ - @Xml(format=ATTR) - public String onmouseover; - - /** - * onmouseover setter. - * @param onmouseover - The new value. - * @return This object (for method chaining). - * @see #onmouseover - */ - public HtmlElement onmouseover(String onmouseover) { - this.onmouseover = onmouseover; - return this; - } - - /** - * onmouseup - functionbody. - * User released pointer button over element. - */ - @Xml(format=ATTR) - public String onmouseup; - - /** - * onmouseup setter. - * @param onmouseup - The new value. - * @return This object (for method chaining). - * @see #onmouseup - */ - public HtmlElement onmouseup(String onmouseup) { - this.onmouseup = onmouseup; - return this; - } - - /** - * onmousewheel - functionbody. - * User rotated wheel of mouse or other device in a manner that emulates such an action. - */ - @Xml(format=ATTR) - public String onmousewheel; - - /** - * onmousewheel setter. - * @param onmousewheel - The new value. - * @return This object (for method chaining). - * @see #onmousewheel - */ - public HtmlElement onmousewheel(String onmousewheel) { - this.onmousewheel = onmousewheel; - return this; - } - - /** - * onpause - functionbody. - * User has paused playback of the video or audio element. - */ - @Xml(format=ATTR) - public String onpause; - - /** - * onpause setter. - * @param onpause - The new value. - * @return This object (for method chaining). - * @see #onpause - */ - public HtmlElement onpause(String onpause) { - this.onpause = onpause; - return this; - } - - /** - * onplay - functionbody. - * UA has initiated playback of the video or audio element. - */ - @Xml(format=ATTR) - public String onplay; - - /** - * onplay setter. - * @param onplay - The new value. - * @return This object (for method chaining). - * @see #onplay - */ - public HtmlElement onplay(String onplay) { - this.onplay = onplay; - return this; - } - - /** - * onplaying - functionbody. - * Playback of the video or audio element has started. - */ - @Xml(format=ATTR) - public String onplaying; - - /** - * onplaying setter. - * @param onplaying - The new value. - * @return This object (for method chaining). - * @see #onplaying - */ - public HtmlElement onplaying(String onplaying) { - this.onplaying = onplaying; - return this; - } - - /** - * onprogress - functionbody. - * UA is fetching media data for the video or audio element. - */ - @Xml(format=ATTR) - public String onprogress; - - /** - * onprogress setter. - * @param onprogress - The new value. - * @return This object (for method chaining). - * @see #onprogress - */ - public HtmlElement onprogress(String onprogress) { - this.onprogress = onprogress; - return this; - } - - /** - * onratechange - functionbody. - * Either the DOM attribute defaultPlaybackRate or the DOM attribute playbackRate on the video or audio element has been updated. - */ - @Xml(format=ATTR) - public String onratechange; - - /** - * onratechange setter. - * @param onratechange - The new value. - * @return This object (for method chaining). - * @see #onratechange - */ - public HtmlElement onratechange(String onratechange) { - this.onratechange = onratechange; - return this; - } - - /** - * onreadystatechange - functionbody. - * Element and all its subresources have finished loading. - */ - @Xml(format=ATTR) - public String onreadystatechange; - - /** - * onreadystatechange setter. - * @param onreadystatechange - The new value. - * @return This object (for method chaining). - * @see #onreadystatechange - */ - public HtmlElement onreadystatechange(String onreadystatechange) { - this.onreadystatechange = onreadystatechange; - return this; - } - - /** - * onreset - functionbody. - * The form element was reset. - */ - @Xml(format=ATTR) - public String onreset; - - /** - * onreset setter. - * @param onreset - The new value. - * @return This object (for method chaining). - * @see #onreset - */ - public HtmlElement onreset(String onreset) { - this.onreset = onreset; - return this; - } - - /** - * onscroll - functionbody. - * Element or document view was scrolled. - */ - @Xml(format=ATTR) - public String onscroll; - - /** - * onscroll setter. - * @param onscroll - The new value. - * @return This object (for method chaining). - * @see #onscroll - */ - public HtmlElement onscroll(String onscroll) { - this.onscroll = onscroll; - return this; - } - - /** - * onseeked - functionbody. - * The value of the IDL attribute seeking changed to false (a seek operation on the video or audio element ended). - */ - @Xml(format=ATTR) - public String onseeked; - - /** - * onseeked setter. - * @param onseeked - The new value. - * @return This object (for method chaining). - * @see #onseeked - */ - public HtmlElement onseeked(String onseeked) { - this.onseeked = onseeked; - return this; - } - - /** - * onseeking - functionbody. - * The value of the IDL attribute seeking changed to true, and the seek operation on the video or audio elements is taking long enough that the UA has time to fire the seeking event. - */ - @Xml(format=ATTR) - public String onseeking; - - /** - * onseeking setter. - * @param onseeking - The new value. - * @return This object (for method chaining). - * @see #onseeking - */ - public HtmlElement onseeking(String onseeking) { - this.onseeking = onseeking; - return this; - } - - /** - * onselect - functionbody. - * User selected some text. - */ - @Xml(format=ATTR) - public String onselect; - - /** - * onselect setter. - * @param onselect - The new value. - * @return This object (for method chaining). - * @see #onselect - */ - public HtmlElement onselect(String onselect) { - this.onselect = onselect; - return this; - } - - /** - * onshow - functionbody. - * User requested the element be shown as a context menu. - */ - @Xml(format=ATTR) - public String onshow; - - /** - * onshow setter. - * @param onshow - The new value. - * @return This object (for method chaining). - * @see #onshow - */ - public HtmlElement onshow(String onshow) { - this.onshow = onshow; - return this; - } - - /** - * onstalled - functionbody. - * UA is attempting to fetch media data for the video or audio element, but that data is not forthcoming. - */ - @Xml(format=ATTR) - public String onstalled; - - /** - * onstalled setter. - * @param onstalled - The new value. - * @return This object (for method chaining). - * @see #onstalled - */ - public HtmlElement onstalled(String onstalled) { - this.onstalled = onstalled; - return this; - } - - /** - * onsubmit - functionbody. - * The form element was submitted. - */ - @Xml(format=ATTR) - public String onsubmit; - - /** - * onsubmit setter. - * @param onsubmit - The new value. - * @return This object (for method chaining). - * @see #onsubmit - */ - public HtmlElement onsubmit(String onsubmit) { - this.onsubmit = onsubmit; - return this; - } - - /** - * onsuspend - functionbody. - * UA is intentionally not currently fetching media data for the video or audio element, but does not yet have the entire contents downloaded. - */ - @Xml(format=ATTR) - public String onsuspend; - - /** - * onsuspend setter. - * @param onsuspend - The new value. - * @return This object (for method chaining). - * @see #onsuspend - */ - public HtmlElement onsuspend(String onsuspend) { - this.onsuspend = onsuspend; - return this; - } - - /** - * ontimeupdate - functionbody. - * The current playback position of the video or audio element changed either as part of normal playback, or in an especially interesting way (for example, discontinuously). - */ - @Xml(format=ATTR) - public String ontimeupdate; - - /** - * ontimeupdate setter. - * @param ontimeupdate - The new value. - * @return This object (for method chaining). - * @see #ontimeupdate - */ - public HtmlElement ontimeupdate(String ontimeupdate) { - this.ontimeupdate = ontimeupdate; - return this; - } - - /** - * onvolumechange - functionbody. - * Either the DOM attribute volume or the DOM attribute muted on the video or audio element has been changed. - */ - @Xml(format=ATTR) - public String onvolumechange; - - /** - * onvolumechange setter. - * @param onvolumechange - The new value. - * @return This object (for method chaining). - * @see #onvolumechange - */ - public HtmlElement onvolumechange(String onvolumechange) { - this.onvolumechange = onvolumechange; - return this; - } - - /** - * onwaiting - functionbody. - * Playback of the video or audio element has stopped because the next frame is not yet available (but UA agent expects that frame to become available in due course). - */ - @Xml(format=ATTR) - public String onwaiting; - - /** - * onwaiting setter. - * @param onwaiting - The new value. - * @return This object (for method chaining). - * @see #onwaiting - */ - public HtmlElement onwaiting(String onwaiting) { - this.onwaiting = onwaiting; - return this; - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlSchema.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlSchema.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlSchema.java deleted file mode 100644 index 71f7568..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/HtmlSchema.java +++ /dev/null @@ -1,27 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -/** - * TODO - *

- */ -@SuppressWarnings("javadoc") -public class HtmlSchema { - - // List of all classes that make up this schema. - public static final Class[] schema = { - - }; - -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/I.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/I.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/I.java deleted file mode 100644 index acb7129..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/I.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <i> element. - *

- */ -@Bean(typeName="i") -public class I extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/IFrame.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/IFrame.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/IFrame.java deleted file mode 100644 index a1ef6e1..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/IFrame.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <iframe> element. - *

- */ -@Bean(typeName="iframe") -public class IFrame extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Img.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Img.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Img.java deleted file mode 100644 index 1203309..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Img.java +++ /dev/null @@ -1,38 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import static org.apache.juneau.xml.annotation.XmlFormat.*; - -import org.apache.juneau.annotation.*; -import org.apache.juneau.xml.annotation.*; - -/** - * DTO for an HTML <img> element. - */ -@Bean(typeName="img") -public class Img extends HtmlElement { - - /** src attribute */ - @Xml(format=ATTR) - public String src; - - /** - * Constructor - * - * @param src src attribute - */ - public Img(String src) { - this.src = src; - } -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Input.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Input.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Input.java deleted file mode 100644 index 8eb58b4..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Input.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <input> element. - *

- */ -@Bean(typeName="input") -public class Input extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Ins.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Ins.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Ins.java deleted file mode 100644 index c96cb8f..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Ins.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <ins> element. - *

- */ -@Bean(typeName="ins") -public class Ins extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Kbd.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Kbd.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Kbd.java deleted file mode 100644 index facde48..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Kbd.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <kbd> element. - *

- */ -@Bean(typeName="kbd") -public class Kbd extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Keygen.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Keygen.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Keygen.java deleted file mode 100644 index e7550f7..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Keygen.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <keygen> element. - *

- */ -@Bean(typeName="keygen") -public class Keygen extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Label.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Label.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Label.java deleted file mode 100644 index c9e8678..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Label.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <label> element. - *

- */ -@Bean(typeName="label") -public class Label extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Legend.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Legend.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Legend.java deleted file mode 100644 index f347271..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Legend.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <legend> element. - *

- */ -@Bean(typeName="legend") -public class Legend extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Li.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Li.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Li.java deleted file mode 100644 index 771b238..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Li.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <li> element. - *

- */ -@Bean(typeName="li") -public class Li extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Link.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Link.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Link.java deleted file mode 100644 index 2c7d039..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Link.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <link> element. - *

- */ -@Bean(typeName="link") -public class Link extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Main.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Main.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Main.java deleted file mode 100644 index 26c069b..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Main.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <main> element. - *

- */ -@Bean(typeName="main") -public class Main extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Map.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Map.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Map.java deleted file mode 100644 index 07363b3..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Map.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <map> element. - *

- */ -@Bean(typeName="map") -public class Map extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Mark.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Mark.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Mark.java deleted file mode 100644 index 88f7726..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Mark.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <mark> element. - *

- */ -@Bean(typeName="mark") -public class Mark extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Menu.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Menu.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Menu.java deleted file mode 100644 index 658b559..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Menu.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <menu> element. - *

- */ -@Bean(typeName="menu") -public class Menu extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meta.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meta.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meta.java deleted file mode 100644 index 55e3f74..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meta.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <meta> element. - *

- */ -@Bean(typeName="meta") -public class Meta extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meter.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meter.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meter.java deleted file mode 100644 index b05db3b..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Meter.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <meter> element. - *

- */ -@Bean(typeName="meter") -public class Meter extends HtmlElement { -} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/4fb01038/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Nav.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Nav.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Nav.java deleted file mode 100644 index 70e7769..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/proto/Nav.java +++ /dev/null @@ -1,23 +0,0 @@ -// *************************************************************************************************************************** -// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * -// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * -// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * -// * with the License. You may obtain a copy of the License at * -// * * -// * http://www.apache.org/licenses/LICENSE-2.0 * -// * * -// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * -// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * -// * specific language governing permissions and limitations under the License. * -// *************************************************************************************************************************** -package org.apache.juneau.html.dto.proto; - -import org.apache.juneau.annotation.*; - -/** - * DTO for an HTML <nav> element. - *

- */ -@Bean(typeName="nav") -public class Nav extends HtmlElement { -}