blob: b04383aaaf512f2a76555c6f14f635cc2885e575 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.common.memento;
import org.eclipse.osbp.runtime.common.validation.IStatus;
// TODO: Auto-generated Javadoc
/**
* A memento manager to be used in ECView.
*/
public interface IECViewMementoManager {
/**
* Loads the memento for the given memento id.
*
* @param mementoId
* the memento id
* @return the object
*/
Object loadMemento(String mementoId);
/**
* Saves the memento by the given mementoId.
*
* @param mementoId
* the memento id
* @param memento
* the memento
* @return status containing exceptions or IStatus.OK
*/
IStatus saveMemento(String mementoId, Object memento);
}