Class | Line # | Actions | |||||
---|---|---|---|---|---|---|---|
Syntax | 38 | 0 | - | 0 | 0 |
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.rendering.test.cts; | |
21 | ||
22 | import java.lang.annotation.Documented; | |
23 | import java.lang.annotation.ElementType; | |
24 | import java.lang.annotation.Retention; | |
25 | import java.lang.annotation.RetentionPolicy; | |
26 | import java.lang.annotation.Target; | |
27 | ||
28 | /** | |
29 | * Used to specify for which Syntax the test suite is for. | |
30 | * | |
31 | * @version $Id: 4aeba83e930803290d13dc1b829077e67716091c $ | |
32 | * @since 4.1M1 | |
33 | * @see CompatibilityTestSuite | |
34 | */ | |
35 | @Retention(RetentionPolicy.RUNTIME) | |
36 | @Target(ElementType.TYPE) | |
37 | @Documented | |
38 | public @interface Syntax | |
39 | { | |
40 | /** | |
41 | * @return the id of the syntax that we are testing (eg "xwiki/2.0") | |
42 | */ | |
43 | String value() default ""; | |
44 | ||
45 | /** | |
46 | * @return the Syntax id of the generated XDOM Macro Block content (for Macros that contain wiki syntax). By default | |
47 | * the tested Syntax is used if not defined | |
48 | */ | |
49 | String metadata() default ""; | |
50 | } |