All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.extensions.fit.EnterRow Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.extensions.fit;

import java.util.ArrayList;
import java.util.List;

import com.greenpepper.Example;
import com.greenpepper.reflect.Fixture;

/**
 * 

EnterRow class.

* * @author oaouattara * @version $Id: $Id */ public class EnterRow extends FitDefaultRow { /** *

Constructor for EnterRow.

* * @param fixture a {@link com.greenpepper.reflect.Fixture} object. * @param timed a {@link java.lang.Boolean} object. */ public EnterRow(Fixture fixture, Boolean timed) { super(null, fixture, timed); } /** {@inheritDoc} */ @Override public List actionCells(Example row) { List enterRow = new ArrayList(); enterRow.add(row.at(0, 1)); enterRow.add(row.at(0, 2)); return enterRow; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy