Add project parent module
This commit is contained in:
14
src/main/java/com/cubetiqs/lang/NonNull.java
Normal file
14
src/main/java/com/cubetiqs/lang/NonNull.java
Normal 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 {
|
||||
}
|
||||
14
src/main/java/com/cubetiqs/lang/Nullable.java
Normal file
14
src/main/java/com/cubetiqs/lang/Nullable.java
Normal 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 {
|
||||
}
|
||||
Reference in New Issue
Block a user