blob: 986963c9e2e0dc469ef2af6e42a8d052486e5d31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 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.ocl.xtext.base.cs2as;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.xtext.basecs.PivotableElementCS;
public class PivotDependency extends AbstractDependency<@NonNull PivotableElementCS>
{
public PivotDependency(@NonNull PivotableElementCS csElement) {
super(csElement);
assert csElement != null;
}
@Override
public boolean canExecute() {
return element.getPivot() != null;
}
}