1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.test.page

File XHTML10ComponentList.java

 

Code metrics

0
0
0
1
62
33
0
-
-
0
-

Classes

Class Line # Actions
XHTML10ComponentList 60 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.test.page;
21   
22    import java.lang.annotation.Documented;
23    import java.lang.annotation.Inherited;
24    import java.lang.annotation.Retention;
25    import java.lang.annotation.Target;
26   
27    import org.xwiki.rendering.internal.renderer.xhtml.XHTMLBlockRenderer;
28    import org.xwiki.rendering.internal.renderer.xhtml.XHTMLRenderer;
29    import org.xwiki.rendering.internal.renderer.xhtml.XHTMLRendererFactory;
30    import org.xwiki.rendering.internal.renderer.xhtml.image.DefaultXHTMLImageRenderer;
31    import org.xwiki.rendering.internal.renderer.xhtml.image.DefaultXHTMLImageTypeRenderer;
32    import org.xwiki.rendering.internal.renderer.xhtml.link.DefaultXHTMLLinkRenderer;
33    import org.xwiki.rendering.internal.renderer.xhtml.link.DefaultXHTMLLinkTypeRenderer;
34    import org.xwiki.test.annotation.ComponentList;
35   
36    import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
37    import static java.lang.annotation.ElementType.METHOD;
38    import static java.lang.annotation.ElementType.TYPE;
39    import static java.lang.annotation.RetentionPolicy.RUNTIME;
40   
41    /**
42    * Pack of default Component implementations that are needed for Parsing and Rendering in XHTML 1.0.
43    *
44    * @version $Id: 0cad17d298a0576836d7a976017b234f2b19f0a2 $
45    * @since 8.3M2
46    */
47    @Documented
48    @Retention(RUNTIME)
49    @Target({ TYPE, METHOD, ANNOTATION_TYPE })
50    @ComponentList({
51    XHTMLBlockRenderer.class,
52    XHTMLRendererFactory.class,
53    XHTMLRenderer.class,
54    DefaultXHTMLLinkRenderer.class,
55    DefaultXHTMLLinkTypeRenderer.class,
56    DefaultXHTMLImageRenderer.class,
57    DefaultXHTMLImageTypeRenderer.class,
58    })
59    @Inherited
 
60    public @interface XHTML10ComponentList
61    {
62    }