Mercurial > hg4j
comparison src/org/tmatesoft/hg/internal/Experimental.java @ 226:26ad7827a62d
Support status query for a single file or a subdirectory of a repository
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 25 May 2011 12:16:24 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
225:fad70a9e6c7f | 226:26ad7827a62d |
---|---|
1 /* | |
2 * Copyright (c) 2011 TMate Software Ltd | |
3 * | |
4 * This program is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; version 2 of the License. | |
7 * | |
8 * This program is distributed in the hope that it will be useful, | |
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 * GNU General Public License for more details. | |
12 * | |
13 * For information on how to redistribute this software under | |
14 * the terms of a license other than GNU General Public License | |
15 * contact TMate Software at support@hg4j.com | |
16 */ | |
17 package org.tmatesoft.hg.internal; | |
18 | |
19 import java.lang.annotation.ElementType; | |
20 import java.lang.annotation.Retention; | |
21 import java.lang.annotation.RetentionPolicy; | |
22 import java.lang.annotation.Target; | |
23 | |
24 /** | |
25 * Work in progress, provisional, experimental or otherwise unstable code in publicly accessible API | |
26 * | |
27 * @author Artem Tikhomirov | |
28 * @author TMate Software Ltd. | |
29 */ | |
30 @Retention(RetentionPolicy.SOURCE) | |
31 @Target({ ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR }) | |
32 public @interface Experimental { | |
33 String reason() default ""; | |
34 } |