blob: c8055652c8d6b744fdbe6a6c21cac468bb8dce9d [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.qvts2qvts.partitioner;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.qvtd.compiler.internal.qvts2qvts.RegionsAnalysis;
import org.eclipse.qvtd.compiler.internal.qvts2qvts.analysis.AbstractPartialRegionClassAnalysis;
import org.eclipse.qvtd.compiler.internal.qvts2qvts.analysis.PartialRegionClassAnalysis;
/**
* Each TraceClassAnalysis identifies the usage of one middle trace class.
*/
public class TraceClassPartitionAnalysis extends AbstractPartialRegionClassAnalysis<@NonNull PartitionsAnalysis>
{
protected final @NonNull PartialRegionClassAnalysis<@NonNull RegionsAnalysis> classAnalysis;
public TraceClassPartitionAnalysis(@NonNull PartialRegionClassAnalysis<@NonNull RegionsAnalysis> classAnalysis) {
super(classAnalysis.getScheduleManager(), classAnalysis.getClassDatum());
this.classAnalysis = classAnalysis;
}
@Override
public boolean isCyclic() {
throw new UnsupportedOperationException();
}
}