blob: 7ba10b643b28d749451e2f7ccf7c800c558b8580 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.ide.core.builder;
import java.util.List;
public class RutaBuildOptions {
private final List<String> language;
private final List<String> engines;
private boolean importByName = false;
private boolean resolveImports = false;
private boolean errorOnDuplicateShortNames;
public RutaBuildOptions(List<String> language, List<String> engines) {
super();
this.language = language;
this.engines = engines;
}
public List<String> getLanguage() {
return language;
}
public List<String> getEngines() {
return engines;
}
public void setImportByName(boolean importByName) {
this.importByName = importByName;
}
public boolean isImportByName() {
return importByName;
}
public void setResolveImports(boolean resolveImports) {
this.resolveImports = resolveImports;
}
public boolean isResolveImports() {
return resolveImports;
}
public void setErrorOnDuplicateShortNames(boolean error) {
this.errorOnDuplicateShortNames = error;
}
public boolean isErrorOnDuplicateShortNames() {
return errorOnDuplicateShortNames;
}
}