/*
 * (c) Copyright: Artenum SARL, 24 rue Louis Blanc,
 *                75010, Paris, France 2007-2009.
 *                http://www.artenum.com
 *
 * License:
 *
 *  This program is free software; you can redistribute it
 *  and/or modify it under the terms of the license defined in the
 *  LICENSE.TXT file at the root of the present package.
 *
 *  This program is distributed in the hope that it will be
 *  useful, but WITHOUT ANY WARRANTY; without even the implied
 *  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 *  PURPOSE. See the LICENSE.TXT for more details.
 *
 *  You should have received a copy of the License along with 
 *  this program; if not, write to:
 *    Artenum SARL, 24 rue Louis Blanc,
 *    75010, PARIS, FRANCE, e-mail: contact@artenum.com
 */ 
package com.artenum.rosetta.implementation;

import com.artenum.rosetta.interfaces.core.HistoryManager;

/**
 * History Manager for JSR270 implementation
 * @author Vincent COUVERT
 */
public class JSR270HistoryManager implements HistoryManager{

	public void addEntry(String newEntry) {
		// TODO Auto-generated method stub
		
	}

	public void display() {
		// TODO Auto-generated method stub
		
	}

	public String getEntry(int entryIndex) {
		// TODO Auto-generated method stub
		return null;
	}

	public String getNextEntry(String beg) {
		// TODO Auto-generated method stub
		return null;
	}

	public String getPreviousEntry(String beg) {
		// TODO Auto-generated method stub
		return null;
	}

	public String getTmpEntry() {
		// TODO Auto-generated method stub
		return null;
	}

	public boolean isInHistory() {
		// TODO Auto-generated method stub
		return false;
	}

	public void load() {
		// TODO Auto-generated method stub
		
	}

	public void reset() {
		// TODO Auto-generated method stub
		
	}

	public void save() {
		// TODO Auto-generated method stub
		
	}

	public void setInHistory(boolean status) {
		// TODO Auto-generated method stub
		
	}

	public void setMaxEntryNumber(int numberOfEntries) {
		// TODO Auto-generated method stub
		
	}

	public void setTmpEntry(String currentCommandLine) {
		// TODO Auto-generated method stub
		
	}

}
