-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b135a89
commit 793b4ef
Showing
5 changed files
with
93 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...mporter/src/main/java/com/hartwig/hmftools/vicc/datamodel/MolecularMatchAstRightLeft.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.hartwig.hmftools.vicc.datamodel; | ||
|
||
import org.immutables.value.Value; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
@Value.Immutable | ||
@Value.Style(passAnnotations = { NotNull.class, Nullable.class }) | ||
public abstract class MolecularMatchAstRightLeft { | ||
@Nullable | ||
public abstract String raw(); | ||
|
||
@NotNull | ||
public abstract String type(); | ||
|
||
@Nullable | ||
public abstract String value(); | ||
} |
18 changes: 18 additions & 0 deletions
18
...porter/src/main/java/com/hartwig/hmftools/vicc/datamodel/MolecularMatchAstRightRight.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.hartwig.hmftools.vicc.datamodel; | ||
|
||
import org.immutables.value.Value; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
@Value.Immutable | ||
@Value.Style(passAnnotations = { NotNull.class, Nullable.class }) | ||
public abstract class MolecularMatchAstRightRight { | ||
@Nullable | ||
public abstract String raw(); | ||
|
||
@NotNull | ||
public abstract String type(); | ||
|
||
@Nullable | ||
public abstract String value(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters