blob: 0100f0fa5aa0f17ddaa2a59ad466ffef942a64dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 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.examples.build.utilities;
public abstract class PredefinedQVToTransformationExecutor extends QVToTransformationExecutor {
@Override
public final String getUri() {
return getPredefinedTransformationURI();
}
/**
* @return the predefined transformation URI for this component
*/
abstract protected String getPredefinedTransformationURI();
}