com.greenpepper.interpreter.flow.action.ActionRowSelector Maven / Gradle / Ivy
package com.greenpepper.interpreter.flow.action;
import com.greenpepper.Example;
import com.greenpepper.interpreter.flow.Row;
import com.greenpepper.interpreter.flow.RowSelector;
import com.greenpepper.reflect.Fixture;
/**
* ActionRowSelector class.
*
* @author oaouattara
* @version $Id: $Id
*/
public class ActionRowSelector implements RowSelector
{
private Fixture fixture;
/**
* Constructor for ActionRowSelector.
*
* @param fixture a {@link com.greenpepper.reflect.Fixture} object.
*/
public ActionRowSelector(Fixture fixture)
{
super();
this.fixture = fixture;
}
/** {@inheritDoc} */
public Row select(Example example)
{
return new ActionRow( fixture );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy