-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Novotnik, Petr
committed
Apr 12, 2017
1 parent
12927b9
commit d1c8399
Showing
6 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
euphoria-core/src/main/java/cz/seznam/euphoria/core/annotation/stability/Experimental.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package cz.seznam.euphoria.core.annotation.stability; | ||
|
||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* Any (API) item annotated with this annotation signals that the item | ||
* is purely experimental and may be change or completely removed without | ||
* any notice at any time. | ||
* <p> | ||
* | ||
* Clients should generally avoid usage of such items, except when experimenting :) | ||
*/ | ||
@Documented | ||
@Target({ | ||
ElementType.TYPE, | ||
ElementType.FIELD, | ||
ElementType.METHOD, | ||
ElementType.PARAMETER, | ||
ElementType.CONSTRUCTOR, | ||
ElementType.ANNOTATION_TYPE, | ||
ElementType.PACKAGE | ||
}) | ||
public @interface Experimental {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters