ScenarioType.java

package org.jbehave.core.annotations;

public enum ScenarioType {

    /**
     * Any type of scenario
     */
    ANY,
    
    /**
     * Scenario that is part of normal story execution
     */
    NORMAL, 
    
    /**
     * Scenario that is parametrised by example
     */
    EXAMPLE
    
}