blob: d78496e999730b7b51e29339dcaa8e23c404bf66 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2020-2022 DLR e. V. and OFFIS e. V.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* OFFIS e. V. - initial API and implementation
* DLR e. V. - initial API and implementation
*******************************************************************************/
package org.eclipse.app4mc.amalthea.visualization.runnabledependency;
/**
* Configuration of the visualization
*
* @author Jan Steffen Becker (jan.becker@dlr.de)
*
*/
public class GraphvizGeneratorConfig {
private boolean horizontalLayout = true;
private boolean showCallDependencies = true;
private boolean showLabelDependencies = true;
private boolean showLabels = true;
private boolean showTasks = true;
public boolean isHorizontalLayout() {
return horizontalLayout;
}
public void setHorizontalLayout(boolean horizontalLayout) {
this.horizontalLayout = horizontalLayout;
}
public boolean isShowCallDependencies() {
return showCallDependencies;
}
public void setShowCallDependencies(boolean showCallDependencies) {
this.showCallDependencies = showCallDependencies;
}
public boolean isShowLabelDependencies() {
return showLabelDependencies;
}
public void setShowLabelDependencies(boolean showLabelDependencies) {
this.showLabelDependencies = showLabelDependencies;
}
public boolean isShowLabels() {
return showLabels;
}
public void setShowLabels(boolean showLabels) {
this.showLabels = showLabels;
}
public boolean isShowTasks() {
return showTasks;
}
public void setShowTasks(boolean showTasks) {
this.showTasks = showTasks;
}
}