Add project parent module

This commit is contained in:
2020-07-03 10:26:09 +07:00
parent bef533b9b5
commit b33a6830cb
22 changed files with 696 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.cubetiqs.lang;
import java.lang.annotation.*;
/**
* @author sombochea
* @since 1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NonNull {
}

View File

@@ -0,0 +1,14 @@
package com.cubetiqs.lang;
import java.lang.annotation.*;
/**
* @author sombochea
* @since 1.0
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Nullable {
}