NoIssue: Add NotNull annotations
This commit is contained in:
@@ -2,12 +2,13 @@ package com.r35157.nenjim.kicker;
|
||||
|
||||
import com.r35157.nenjim.hubd.Context;
|
||||
import com.r35157.nenjim.hubd.NenjimHub;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public interface NenjimProcess {
|
||||
void run() throws Exception;
|
||||
|
||||
void setContext(Context context);
|
||||
void setHub(NenjimHub hub);
|
||||
void setContext(@NotNull Context context);
|
||||
void setHub(@NotNull NenjimHub hub);
|
||||
|
||||
String getName();
|
||||
@NotNull String getName();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user