/*	Class Information
 *	Written 2006-10 By Filip Ekberg
 *	School Project on BTH - Software Engineering
 *
 *	Copyright (C)
 *
 */
import java.io.*;
import java.util.*;

// This class will help us recognize input-data
// The data from a Form or Console application will be passed here and after processing the data
// a response will be returned if the user is accepted or not
class Recognizer 
{
	private ArrayList m_timestamps;
	private String m_recoString;
	
	public Boolean addTimeStamp(int ms)
	{
		if (m_recoString.length() != 0)
		{
			m_timestamps.add(ms);
			return true;
		}		
		return false;
	}
	
	public Recognizer()
	{
	}
}

