Archived
0

Initial commit

This commit is contained in:
Pepich
2017-11-15 18:38:45 +01:00
parent 9e9b4df5b7
commit 51380d886e
54 changed files with 1900 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package com.redstoner.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** The Version annotation, to be applied to all Classes that are part of the project.
*
* @author Pepich */
@Target(ElementType.TYPE)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Version
{
/** The major indicator of the version. Will be used for compatibility detection.
*
* @return the major version as an int */
int major();
int minor();
int revision();
/** The compatibility part of the version number. Will be used for compatibility detection.</br>
* Set to -1 if it is supposed to be always compatible.</br>
* Defaults to 1.
*
* @return the smallest compatible version as an int. */
int compatible() default 1;
}