// Copyright � 2002-2005 Canoo Engineering AG, Switzerland. package com.canoo.webtest.interfaces; import java.util.List; /** * Interface for a sequence of Steps. * * @author Carsten Seibert */ public interface IStepSequence { List getSteps(); }