NoIssue: Add NenjimJournalId
This commit is contained in:
@@ -29,6 +29,7 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
implementation("org.jetbrains:annotations:26.0.2-1")
|
||||
implementation("com.r35157.libs:valuetypes-basic-api:0.1-dev")
|
||||
}
|
||||
|
||||
java {
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.r35157.nenjim.valuetypes;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import com.r35157.libs.valuetypes.basic.Id;
|
||||
|
||||
public record NenjimJournalId(
|
||||
@NotNull String value
|
||||
) implements Id {}
|
||||
@@ -1,6 +0,0 @@
|
||||
package com.r35157.nenjim.valuetypes;
|
||||
|
||||
public interface SomeInterface {
|
||||
String concat(String x, String y);
|
||||
void divideByZero() throws ArithmeticException;
|
||||
}
|
||||
Reference in New Issue
Block a user