Repository: incubator-juneau Updated Branches: refs/heads/master fcb419510 -> d408947b1
http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rt.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Rt.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rt.java index 559cdd9..e7271f5 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Rt.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rt.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-rt-element'><rt></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="rt") public class Rt extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rtc.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Rtc.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rtc.java new file mode 100644 index 0000000..71a658a --- /dev/null +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Rtc.java @@ -0,0 +1,25 @@ +// *************************************************************************************************************************** +// * 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; + +import org.apache.juneau.annotation.*; + +/** + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-rtc-element'><rtc></a> element. + * <p> + * + * @author James Bognar ([email protected]) + */ +@Bean(name="rtc") +public class Rtc extends HtmlElement { +} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ruby.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Ruby.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ruby.java index 5c4db19..e8d5b17 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Ruby.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ruby.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-ruby-element'><ruby></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="ruby") public class Ruby extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/S.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/S.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/S.java index 593e0c5..7afea70 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/S.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/S.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-s-element'><s></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="s") public class S extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Samp.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Samp.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Samp.java index ccacaaa..dcf15bd 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Samp.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Samp.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-samp-element'><samp></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="samp") public class Samp extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Script.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Script.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Script.java index 57d4efb..340e18c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Script.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Script.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/scripting-1.html#the-script-element'><script></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="script") public class Script extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Section.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Section.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Section.java index 1df5626..166e36c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Section.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Section.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/sections.html#the-section-element'><section></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="section") public class Section extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Select.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Select.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Select.java index b70d5e0..6985792 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Select.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Select.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/forms.html#the-select-element'><select></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="select") public class Select extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Small.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Small.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Small.java index 3e02773..cbabb7f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Small.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Small.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-small-element'><small></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="small") public class Small extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Source.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Source.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Source.java index 758d12a..a3cb8ba 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Source.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Source.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/embedded-content-0.html#the-source-element'><source></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="source") public class Source extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Span.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Span.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Span.java index dd3a31c..226c275 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Span.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Span.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-span-element'><span></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="span") public class Span extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Strong.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Strong.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Strong.java index 894ceab..c64a1fb 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Strong.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Strong.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-strong-element'><strong></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="strong") public class Strong extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Style.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Style.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Style.java index b484dd0..8ecc1c9 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Style.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Style.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/document-metadata.html#the-style-element'><style></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="style") public class Style extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sub.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Sub.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sub.java index 05edb2e..8023478 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Sub.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sub.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-sub-and-sup-elements'><sub></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="sub") public class Sub extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Summary.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Summary.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Summary.java index a6a938f..a44d9e3 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Summary.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Summary.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href=''><summary></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="summary") public class Summary extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sup.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Sup.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sup.java index 1e2cf45..ce7c58b 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Sup.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Sup.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-sub-and-sup-elements'><sup></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="sup") public class Sup extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Table.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Table.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Table.java index 4af2011..601584c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Table.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Table.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-table-element'><table></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="table") public class Table extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tbody.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tbody.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tbody.java index 2da7ddf..a70f0a4 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tbody.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tbody.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-tbody-element'><tbody></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="tbody") public class Tbody extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Td.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Td.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Td.java index b085b91..b0e075e 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Td.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Td.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-td-element'><td></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="td") public class Td extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Template.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Template.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Template.java new file mode 100644 index 0000000..45be851 --- /dev/null +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Template.java @@ -0,0 +1,25 @@ +// *************************************************************************************************************************** +// * 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; + +import org.apache.juneau.annotation.*; + +/** + * DTO for an HTML <a href='https://www.w3.org/TR/html5/scripting-1.html#the-template-element'><template></a> element. + * <p> + * + * @author James Bognar ([email protected]) + */ +@Bean(name="template") +public class Template extends HtmlElement { +} http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Textarea.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Textarea.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Textarea.java index 89d4335..72822fe 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Textarea.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Textarea.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/forms.html#the-textarea-element'><textarea></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="textarea") public class Textarea extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tfoot.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tfoot.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tfoot.java index e693ebc..d634089 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tfoot.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tfoot.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-tfoot-element'><tfoot></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="tfoot") public class Tfoot extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Th.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Th.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Th.java index aaf2e3c..6645d2a 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Th.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Th.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-th-element'><th></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="th") public class Th extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Thead.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Thead.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Thead.java index e6df533..0351fd8 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Thead.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Thead.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-thead-element'><thead></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="thead") public class Thead extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Time.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Time.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Time.java index 3e2b4d4..47ee4a4 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Time.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Time.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-time-element'><time></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="time") public class Time extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Title.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Title.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Title.java index 3feb404..31192ae 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Title.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Title.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/document-metadata.html#the-title-element'><title></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="title") public class Title extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tr.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tr.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tr.java index 9da7bb3..f0a0e3f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Tr.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Tr.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/tabular-data.html#the-tr-element'><tr></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="tr") public class Tr extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Track.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Track.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Track.java index 9911135..f56563f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Track.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Track.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/embedded-content-0.html#the-track-element'><track></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="track") public class Track extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/U.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/U.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/U.java index 959afd5..3614bce 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/U.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/U.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-u-element'><u></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="u") public class U extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ul.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Ul.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ul.java index e4a3a89..499f8ed 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Ul.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Ul.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/grouping-content.html#the-ul-element'><ul></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="ul") public class Ul extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Var.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Var.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Var.java index 211ef9e..98fb564 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Var.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Var.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-var-element'><var></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="var") public class Var extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Video.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Video.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Video.java index 0d01253..1923097 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Video.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Video.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/embedded-content-0.html#the-video-element'><video></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="video") public class Video extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/Wbr.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/Wbr.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/Wbr.java index 5d18567..1b2df11 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/Wbr.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/dto/Wbr.java @@ -2,7 +2,7 @@ // * 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 * +// * with the License. You may obtain a copy of the License at * // * * // * http://www.apache.org/licenses/LICENSE-2.0 * // * * @@ -12,14 +12,14 @@ // *************************************************************************************************************************** package org.apache.juneau.html.dto; -import org.apache.juneau.xml.annotation.*; +import org.apache.juneau.annotation.*; /** - * TODO + * DTO for an HTML <a href='https://www.w3.org/TR/html5/text-level-semantics.html#the-wbr-element'><wbr></a> element. * <p> * * @author James Bognar ([email protected]) */ -@Xml(name="x") +@Bean(name="wbr") public class Wbr extends HtmlElement { } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/d408947b/juneau-core/src/main/java/org/apache/juneau/html/dto/X.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/dto/X.java b/juneau-core/src/main/java/org/apache/juneau/html/dto/X.java deleted file mode 100644 index 20f9b85..0000000 --- a/juneau-core/src/main/java/org/apache/juneau/html/dto/X.java +++ /dev/null @@ -1,25 +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; - -import org.apache.juneau.xml.annotation.*; - -/** - * TODO - * <p> - * - * @author James Bognar ([email protected]) - */ -@Xml(name="x") -public class X extends HtmlElement { -}
