blob: 834545eca01f0ecd4df2b1d77b1b4a7507184302 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.compiler.internal.qvtb2qvts;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.CallExp;
import org.eclipse.ocl.pivot.Element;
import org.eclipse.ocl.pivot.Property;
import org.eclipse.ocl.pivot.utilities.Nameable;
import org.eclipse.qvtd.pivot.qvtschedule.utilities.DomainUsage;
/**
* OperationDependencyStep describes one step in the set of alternative usages of an analyzed operation input/output value.
*/
public interface OperationDependencyStep extends Nameable
{
public interface ClassStep extends OperationDependencyStep
{
boolean isParameter();
}
public interface PropertyStep extends OperationDependencyStep
{
@NonNull CallExp getCallExp();
@NonNull Property getProperty();
}
@NonNull Element getElement();
org.eclipse.ocl.pivot.@NonNull Class getElementalType();
@NonNull Element getPathElement();
@NonNull DomainUsage getUsage();
}