Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java19
1 files changed, 18 insertions, 1 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java
index a0afd5959a7..fde0be01716 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.export/src/org/eclipse/papyrus/infra/gmfdiag/export/actions/ExportAllDiagramsParameter.java
@@ -42,6 +42,9 @@ public class ExportAllDiagramsParameter {
/** The model set. */
private ModelSet modelSet = null;
+ /** boolean to check if the result of the generation has to be displayed */
+ private boolean isDisplayStatus = true;
+
/**
* Constructor.
*
@@ -165,6 +168,20 @@ public class ExportAllDiagramsParameter {
this.modelSet = modelSet;
}
-
+ /**
+ * Returns <code>true</code> if the status has to be displayed at the end of the export.
+ * @return <code>true</code> if the status has to be displayed at the end of the export
+ */
+ public boolean isDisplayStatus() {
+ return isDisplayStatus;
+ }
+
+ /**
+ * Indicates if the status has to be displayed at the end of the export
+ * @param isDisplayStatus <code>true</code> if the status has to be displayed at the end of the export.
+ */
+ public void setDisplayStatus(boolean isDisplayStatus) {
+ this.isDisplayStatus = isDisplayStatus;
+ }
}

Back to the top