Skip to content
Snippets Groups Projects
Commit c7bd16c3 authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Add default method

parent 7a552aac
Branches
Tags
No related merge requests found
package de.unikoblenz.fgbks.core.dmn.domain.vdmn;
import de.unikoblenz.fgbks.core.dmn.domain.common.RowNumber;
import de.unikoblenz.fgbks.core.dmn.domain.ids.DecisionId;
import de.unikoblenz.fgbks.core.dmn.domain.ids.DecisionTableId;
import de.unikoblenz.fgbks.core.dmn.domain.ids.DefinitionId;
......@@ -35,6 +36,10 @@ public interface VDmnValue extends VDmnElement {
return getDmnRule().getRuleId();
}
default RowNumber getRowNumber() {
return getDmnRule().getRowNumber();
}
default boolean isInputValue() {
return getDmnColumn() instanceof VDmnInputColumn;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment