blob: ca74c3aad5f9b71a380c7660b4839878d3a9e86a [file] [log] [blame]
/*
*
* Copyright (c) 2011, 2016 - 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
* Loetz GmbH&Co.KG
*
*/
package org.eclipse.osbp.vaadin.emf.api;
import java.util.List;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.command.CommandStack;
// TODO: Auto-generated Javadoc
/**
* The Interface ICommandStack.
*/
public interface ICommandStack extends CommandStack {
/**
* Returns all commands contained in the command stack.
*
* @return the all commands
*/
List<Command> getAllCommands();
}