blob: 026246e974a57836de2c7b193927a19a99c18297 [file] [log] [blame]
/*
* Copyright (c) 2010 Mia-Software.
* 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:
* Gabriel Barbier (Mia-Software) - initial API and implementation
*/
package org.eclipse.gmt.modisco.workflow;
import org.eclipse.gmt.modisco.workflow.modiscoworkflow.Element;
/** @deprecated */
@Deprecated
public interface WorkflowModelEvents {
/**
* Add a component in the Workwlow
*
* @param element
* Element which represents the component
*/
public void notifyElementAdded(Element element);
/**
* Change a component of Workflow Essentially, to up or down an element in the workflow
*
* @param index
* Component index
* @param element
* The new element
*/
public void notifyElementInserted(int index, Element element);
/**
* To delete a component at index specified
*
* @param index
* Component index
*/
public void notifyElementRemoved(int index);
}