blob: fc53fa93afe9804e62b1eb95b9b7cb856de05527 [file] [log] [blame]
/**
* Copyright (c) 2009 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:
* Nicolas Payneau (Mia-Software) - initial API and implementation
*
*
* $Id$
*/
package org.eclipse.gmt.modisco.workflow.mwe.workflow;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>IWorkflow Visitor</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.gmt.modisco.workflow.mwe.workflow.WorkflowPackage#getIWorkflowVisitor()
* @model interface="true" abstract="true"
* @generated
* @deprecated replaced by org.eclipse.modisco.workflow.mwe, cf.
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=337969
*/
@Deprecated
public interface IWorkflowVisitor extends EObject {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void visitUnitOfWork(WorkflowUnitOfWork unitOfWork);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void visitComposite(WorkflowCompositeComponent composite);
} // IWorkflowVisitor