1 package net.sf.msplice.stack;
2
3 import net.sf.msplice.model.condition.AbstractCondition;
4 import net.sf.msplice.model.value.AbstractValue;
5
6
7 public class StackHelper {
8
9 public AbstractValue getLastDefaultValue(SpliceElementStack elementStack) {
10
11 // throw a SpliceRuntimeException if no last default value exists
12 // because this should never happen
13
14 return null;
15 }
16
17 public AbstractCondition getLastDefaultCondition(SpliceElementStack elementStack) {
18
19 // throw a SpliceRuntimeException if no last default condition exists
20 // because this should never happen
21
22 return null;
23 }
24
25 }