-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of many Event Types and correction of Naming
- Loading branch information
Showing
33 changed files
with
578 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 25 additions & 5 deletions
30
...model/src/main/java/org/uengine/processpublisher/bpmn/importer/TBoundaryEventAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,6 @@ public Event createActivity(TEvent src, Hashtable keyedContext){ | |
return event; | ||
} | ||
|
||
|
||
|
||
} |
7 changes: 0 additions & 7 deletions
7
uengine-bpmn-modeler/src/main/java/org/uengine/kernel/bpmn/view/MessageFlowView.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 41 additions & 2 deletions
43
uengine-core/src/main/java/org/uengine/kernel/AbstractFlow.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,46 @@ | ||
package org.uengine.kernel; | ||
|
||
import org.metaworks.annotation.Hidden; | ||
import org.metaworks.annotation.Id; | ||
import org.uengine.modeling.Relation; | ||
|
||
/** | ||
* Created by uengine on 2018. 3. 2.. | ||
*/ | ||
public class AbstractFlow { | ||
} | ||
public abstract class AbstractFlow extends Relation implements java.io.Serializable { | ||
private static final long serialVersionUID = org.uengine.kernel.GlobalContext.SERIALIZATION_UID; | ||
|
||
private String sourceRef; | ||
|
||
@Hidden | ||
public String getSourceRef() { | ||
return sourceRef; | ||
} | ||
|
||
public void setSourceRef(String source) { | ||
this.sourceRef = source; | ||
} | ||
|
||
private String targetRef; | ||
|
||
@Hidden | ||
public String getTargetRef() { | ||
return targetRef; | ||
} | ||
|
||
public void setTargetRef(String target) { | ||
this.targetRef = target; | ||
} | ||
|
||
String tracingTag; | ||
|
||
@Id | ||
@Hidden | ||
public String getTracingTag() { | ||
return tracingTag; | ||
} | ||
|
||
public void setTracingTag(String tag) { | ||
tracingTag = tag; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.