01: package net.sf.mockcreator; 02: 03: import java.util.List; 04: 05: public interface IExpectation extends Comparable, IReturnable { 06: String getMarker(); 07: 08: Object getReturnValue(); 09: 10: Throwable getThrowableValue(); 11: 12: List getParams(); 13: }