Skip to content

Commit

Permalink
changed labeling
Browse files Browse the repository at this point in the history
Issue #78
  • Loading branch information
rsoika committed Sep 5, 2019
1 parent bf04f27 commit 0a979e3
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 34 deletions.
17 changes: 7 additions & 10 deletions org.imixs.eclipse.bpmn2.plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@
runtimeId="org.imixs.workflow.bpmn.runtime"
uri="http://www.imixs.org/bpmn2">
</model>
<!-- oder CustomElementFeatureContainer MyTaskFeatureContainer
org.imixs.bpmn.propertytab.application org.imixs.bpmn.propertytab.mail
-->




<customTask
category="Imixs-Workflow"
description="A Workflow Task describes the process performed by a human user. The task is managed by the Imixs-Workflow Engine and provides properties which are describing the status of this task inside the Workflow Engine."
Expand All @@ -50,7 +47,7 @@
featureContainer="org.imixs.bpmn.ImixsFeatureContainerCatchEvent"
id="org.imixs.workflow.bpmn.ActivityEntityCatchEvent"
name="Workflow Event"
propertyTabs="org.imixs.bpmn.propertytab.event.history org.imixs.bpmn.propertytab.event.acl org.imixs.bpmn.propertytab.event.mail org.imixs.bpmn.propertytab.event.workflow org.imixs.bpmn.propertytab.event.businessrule org.imixs.bpmn.propertytab.event.report org.imixs.bpmn.propertytab.event.version org.imixs.bpmn.propertytab.event.timer"
propertyTabs="org.imixs.bpmn.propertytab.event.history org.imixs.bpmn.propertytab.event.acl org.imixs.bpmn.propertytab.event.message org.imixs.bpmn.propertytab.event.workflow org.imixs.bpmn.propertytab.event.businessrule org.imixs.bpmn.propertytab.event.report org.imixs.bpmn.propertytab.event.version org.imixs.bpmn.propertytab.event.timer"
runtimeId="org.imixs.workflow.bpmn.runtime"
type="IntermediateCatchEvent">
<property
Expand Down Expand Up @@ -91,18 +88,18 @@
</propertyTab>

<propertyTab
class="org.imixs.bpmn.ui.event.MailPropertySection"
id="org.imixs.bpmn.propertytab.event.mail"
class="org.imixs.bpmn.ui.event.MessagePropertySection"
id="org.imixs.bpmn.propertytab.event.message"
afterTab="org.imixs.bpmn.propertytab.event.history"
label="Mail"
label="Message"
runtimeId="org.imixs.workflow.bpmn.runtime"
type="org.eclipse.bpmn2.CatchEvent">
</propertyTab>

<propertyTab
class="org.imixs.bpmn.ui.event.BusinessRulePropertySection"
id="org.imixs.bpmn.propertytab.event.businessrule"
afterTab="org.imixs.bpmn.propertytab.event.mail"
afterTab="org.imixs.bpmn.propertytab.event.message"
label="Rule"
runtimeId="org.imixs.workflow.bpmn.runtime"
type="org.eclipse.bpmn2.CatchEvent">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.imixs.bpmn.ui.ListEditor;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for ACL config.
*
* @author rsoika
*
Expand All @@ -33,23 +33,23 @@ public class ACLPropertySection extends AbstractPropertySection {

@Override
protected AbstractDetailComposite createSectionRoot() {
return new MailDetailComposite(this);
return new ACLDetailComposite(this);
}

@Override
public AbstractDetailComposite createSectionRoot(Composite parent, int style) {
return new MailDetailComposite(parent, style);
return new ACLDetailComposite(parent, style);
}

public class MailDetailComposite extends ImixsDetailComposite {
public class ACLDetailComposite extends ImixsDetailComposite {

Composite aclComposite = null;

public MailDetailComposite(AbstractBpmn2PropertySection section) {
public ACLDetailComposite(AbstractBpmn2PropertySection section) {
super(section);
}

public MailDetailComposite(Composite parent, int style) {
public ACLDetailComposite(Composite parent, int style) {
super(parent, style);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.imixs.bpmn.ui.ImixsDetailComposite;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for Rule config.
*
* @author rsoika
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@
* @author rsoika
*
*/
public class MailPropertySection extends AbstractPropertySection {
public class MessagePropertySection extends AbstractPropertySection {

@Override
protected AbstractDetailComposite createSectionRoot() {
return new MailDetailComposite(this);
return new MessageDetailComposite(this);
}

@Override
public AbstractDetailComposite createSectionRoot(Composite parent, int style) {
return new MailDetailComposite(parent, style);
return new MessageDetailComposite(parent, style);
}

public class MailDetailComposite extends ImixsDetailComposite {
public MailDetailComposite(AbstractBpmn2PropertySection section) {
public class MessageDetailComposite extends ImixsDetailComposite {
public MessageDetailComposite(AbstractBpmn2PropertySection section) {
super(section);
}

public MailDetailComposite(Composite parent, int style) {
public MessageDetailComposite(Composite parent, int style) {
super(parent, style);
}

Expand All @@ -52,7 +52,7 @@ public void createBindings(final EObject be) {
return ;
}

setTitle("Message");
setTitle("Message Content");

Value value = ImixsBPMNPlugin.getItemValueByName((BaseElement) be,
"txtMailSubject", null, "");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.imixs.bpmn.ui.RadioButtonEditor;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for Report config.
*
* @author rsoika
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.imixs.bpmn.ui.RadioButtonEditor;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for Version config.
*
* @author rsoika
*
Expand Down Expand Up @@ -47,7 +47,7 @@ public void createBindings(final EObject be) {
return ;
}

setTitle("Version-Management");
setTitle("Version Management");

Map<String,String> optionList = new HashMap<String,String>();
optionList.put("0","no Version (default)");
Expand All @@ -63,7 +63,7 @@ public void createBindings(final EObject be) {
"numVersionActivityID", null, "");
TextObjectEditor valueEditor = new TextObjectEditor(this, value,
ImixsBPMNPlugin.IMIXS_ITEMVALUE);
valueEditor.createControl(attributesComposite, "Activity ID");
valueEditor.createControl(attributesComposite, "Event ID");
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.imixs.bpmn.ui.RadioButtonEditor;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for Workflow config.
*
* @author rsoika
*
Expand Down Expand Up @@ -54,7 +54,7 @@ public void createBindings(final EObject be) {
return;
}

setTitle("Basic");
setTitle("Workflow Configuration");

// ProcessID
this.bindAttribute(attributesComposite, be, "activityid");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.imixs.bpmn.ui.ListEditor;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for ACL config.
*
* @author rsoika
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void createBindings(final EObject be) {
if (be == null || !(be instanceof Task)) {
return;
}
setTitle("Application");
setTitle("Application Properties");

// Input Form
Value itemValue = ImixsBPMNPlugin.getItemValueByName((BaseElement) be, "txteditorid", null, "");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import org.imixs.bpmn.ui.ImixsDetailComposite;

/**
* This PorpertySection provides the attributes for Mail config.
* This PorpertySection provides the attributes for Process config.
*
* @author rsoika
*
Expand Down Expand Up @@ -43,7 +43,7 @@ public SummaryDetailComposite(Composite parent, int style) {

@Override
public void createBindings(EObject be) {
setTitle("Workflow");
setTitle("Workflow Configuration");

// ProcessID
// this.bindAttribute(attributesComposite, be, "processid");
Expand All @@ -60,8 +60,10 @@ public void createBindings(EObject be) {
"txtworkflowabstract", "CDATA", "");
valueEditor = new TextObjectEditor(this, itemValue, ImixsBPMNPlugin.IMIXS_ITEMVALUE);
valueEditor.setMultiLine(true);

valueEditor.createControl(attributesComposite, "Abstract");


}

}
Expand Down

0 comments on commit 0a979e3

Please sign in to comment.