blob: 2872ae7f8caf0f014b18904081eb7fc1309559f4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2017 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.cs2as.compiler;
import java.util.List;
import java.util.Map;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
public interface CS2ASJavaCompilerParameters extends OCL2JavaTxCompilerParams {
public @Nullable ClassLoader getClassLoader();
public @Nullable List<@NonNull String> getClassPathProjectNames();
/**
* @return the fully qualified name of the lookup resolver class
*/
public @NonNull String getLookupSolverClassName();
/**
* @return the fully qualified name of the lookup result class
*/
public @NonNull String getLookupResultClassName();
/**
* @return the path in which the CGed transformation will be saved
*/
public @NonNull String getSavePath();
/**
* @return the java package name in which the CGed transformation will be created
*/
public @Nullable String getPackagePrefix();
/**
* @return the map of Java package renames to replicate the localization of the run-time packages.
*/
public @NonNull Map<@NonNull String, @NonNull String> getPackageRenames();
/**
* @return true to generate an incremental transformation
*/
public boolean isIncremental();
public void setIsIncremental(boolean isIncremental);
}