Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Bégaudeau2018-05-24 07:17:32 +0000
committerPierre-Charles David2018-05-25 13:53:13 +0000
commitceb11f758365ceb98b4b8fb816bdbfc8bd7bed48 (patch)
treea75b0b042d60802dd3a4fdf58b4ba5dea997d9ce
parentb82fdf585de90f18fa2c8b4599d778889d3d71c9 (diff)
downloadorg.eclipse.sirius-ceb11f758365ceb98b4b8fb816bdbfc8bd7bed48.tar.gz
org.eclipse.sirius-ceb11f758365ceb98b4b8fb816bdbfc8bd7bed48.tar.xz
org.eclipse.sirius-ceb11f758365ceb98b4b8fb816bdbfc8bd7bed48.zip
[509735] Improve the property sections of the workflow
Update the order of the property sections of the workflow and hide unsupported properties for now. Bug: 509735 Change-Id: Id56a64335613bef7a63989b191bf1e805cca8259 Signed-off-by: Stéphane Bégaudeau <stephane.begaudeau@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.editor.workflow/plugin.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.editor.workflow/plugin.xml b/plugins/org.eclipse.sirius.editor.workflow/plugin.xml
index 57ab283cb7..c957ac2a89 100644
--- a/plugins/org.eclipse.sirius.editor.workflow/plugin.xml
+++ b/plugins/org.eclipse.sirius.editor.workflow/plugin.xml
@@ -18,6 +18,7 @@
<extension point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections contributorId="org.eclipse.sirius.editor.editorPlugin.SiriusEditorContributor">
+ <!--
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.activitydescription.ActivityDescriptionImagePathPropertySection"
id="workflow.section.activityDescription.ImagePath"
@@ -26,13 +27,16 @@
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.ActivityDescription"/>
</propertySection>
+ -->
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.activitydescription.ActivityDescriptionLabelExpressionPropertySection"
id="workflow.section.activityDescription.LabelExpression"
filter="org.eclipse.sirius.workflow.model.editor.properties.filters.workflow.activitydescription.ActivityDescriptionLabelExpressionFilter"
+ afterSection="description.section.identifiedElement.Name"
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.ActivityDescription"/>
</propertySection>
+ <!--
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.sectiondescription.SectionDescriptionImagePathPropertySection"
id="workflow.section.sectionDescription.ImagePath"
@@ -49,13 +53,16 @@
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.SectionDescription"/>
</propertySection>
+ -->
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.sectiondescription.SectionDescriptionTitleExpressionPropertySection"
id="workflow.section.sectionDescription.TitleExpression"
filter="org.eclipse.sirius.workflow.model.editor.properties.filters.workflow.sectiondescription.SectionDescriptionTitleExpressionFilter"
+ afterSection="description.section.identifiedElement.Name"
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.SectionDescription"/>
</propertySection>
+ <!--
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.pagedescription.PageDescriptionImagePathPropertySection"
id="workflow.section.pageDescription.ImagePath"
@@ -72,10 +79,12 @@
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.PageDescription"/>
</propertySection>
+ -->
<propertySection
class="org.eclipse.sirius.workflow.model.editor.properties.sections.workflow.pagedescription.PageDescriptionTitleExpressionPropertySection"
id="workflow.section.pageDescription.TitleExpression"
filter="org.eclipse.sirius.workflow.model.editor.properties.filters.workflow.pagedescription.PageDescriptionTitleExpressionFilter"
+ afterSection="description.section.identifiedElement.Name"
tab="viewpoint.tab.general">
<input type="org.eclipse.sirius.workflow.PageDescription"/>
</propertySection>

Back to the top