1 /* Bug.java
2 Copyright (C) 2012 Red Hat, Inc.
3 
4 This file is part of IcedTea.
5 
6 IcedTea is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 2.
9 
10 IcedTea 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 General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with IcedTea; see the file COPYING.  If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 02110-1301 USA.
19 
20 Linking this library statically or dynamically with other modules is
21 making a combined work based on this library.  Thus, the terms and
22 conditions of the GNU General Public License cover the whole
23 combination.
24 
25 As a special exception, the copyright holders of this library give you
26 permission to link this library with independent modules to produce an
27 executable, regardless of the license terms of these independent
28 modules, and to copy and distribute the resulting executable under
29 terms of your choice, provided that you also meet, for each linked
30 independent module, the terms and conditions of the license of that
31 module.  An independent module is a module which is not derived from
32 or based on this library.  If you modify this library, you may extend
33 this exception to your version of the library, but you are not
34 obligated to do so.  If you do not wish to do so, delete this
35 exception statement from your version.
36  */
37 
38 package net.sourceforge.jnlp.annotations;
39 
40 import java.lang.annotation.ElementType;
41 import java.lang.annotation.Retention;
42 import java.lang.annotation.RetentionPolicy;
43 import java.lang.annotation.Target;
44 
45 /**
46  * When declare for suite class or for Test-marked method,
47  * should be interpreted by report generating tool to links.
48  * Known shortcuts are
49  * SX  - http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=X
50  * PRX - http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=X
51  * RHX - https://bugzilla.redhat.com/show_bug.cgi?id=X
52  * DX  - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=X
53  * GX  - http://bugs.gentoo.org/show_bug.cgi?id=X
54  * CAX - http://server.complang.tuwien.ac.at/cgi-bin/bugzilla/show_bug.cgi?id=X
55  * LPX - https://bugs.launchpad.net/bugs/X
56  *
57  * http://mail.openjdk.java.net/pipermail/distro-pkg-dev/
58  * and http://mail.openjdk.java.net/pipermail/ are proceed differently
59  * You just put eg @Bug(id="RH12345",id="http:/my.bukpage.com/terribleNew")
60  * and  RH12345 will be transalated as
61  * <a href="https://bugzilla.redhat.com/show_bug.cgi?id=123456">123456<a> or
62  * similar, the url will be inclueded as is. Both added to proper tests or suites
63  *
64  */
65 @Target({ElementType.METHOD,ElementType.TYPE})
66 @Retention(RetentionPolicy.RUNTIME)
67 public @interface Bug {
id()68  public String[] id();
69 }
70