package net.ihe.common.report;

import org.jboss.seam.annotations.Logger;
import org.jboss.seam.log.Log;
import org.jboss.seam.log.Logging;

/**
 * @author Anne-Gaelle Berge (aberge@irisa.fr)
 */
public class GazelleTestHeadingBean
{

	/** Logger */
	@Logger
	private static Log log = Logging.getLog(GazelleTestHeadingBean.class);
	
	/**
	 *
	 */
	private String testKeyword = null;
	private String testName = null;
	private Integer pageIndex = null;


	/**
	 *
	 */
	public GazelleTestHeadingBean(
		String inTestKeyword,
		String inTestName,
		Integer inPageIndex
		)
	{
		log.info("creating Header");
		this.testKeyword = inTestKeyword;
		this.testName = inTestName;
		this.pageIndex = inPageIndex;
	}


	/**
	 *
	 */
	public String getTestKeyword()
	{
		return this.testKeyword;
	}


	/**
	 *
	 */
	public String getTestName()
	{
		return this.testName;
	}


	/**
	 *
	 */
	public Integer getPageIndex()
	{
		return this.pageIndex;
	}


}
