Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
deemount committed Mar 15, 2024
2 parents bc92a2d + d6434d8 commit 76e2d81
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pkg/flow/Interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type FlowBaseReferences interface {
// FlowSequenceFlow ...
type FlowSequenceFlow interface {
SetSequenceFlow(num int)
GetSequenceFlow(num int) SEQUENCE_FLOW_PTR
GetSequenceFlow(num int) *SequenceFlow
}

// FlowBase ...
Expand Down
5 changes: 2 additions & 3 deletions pkg/marker/Types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ type TCATEGORY_SLC []TCategory

type CATEGORY_PTR *Category
type CATEGORY_VALUE_PTR *CategoryValue

//type INCOMING_PTR *Incoming
//type OUTGOING_PTR *Outgoing
type INCOMING_PTR *Incoming
type OUTGOING_PTR *Outgoing
2 changes: 1 addition & 1 deletion pkg/process/Process.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (process Process) GetAssociation(num int) flow.ASSOCIATION_PTR {
}

// GetSequenceFlow ...
func (process Process) GetSequenceFlow(num int) flow.SEQUENCE_FLOW_PTR {
func (process Process) GetSequenceFlow(num int) *flow.SequenceFlow {
return &process.SequenceFlow[num]
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/subprocesses/AdHocSubProcess.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,6 @@ func (adhoc AdHocSubProcess) GetEventBasedGateway(num int) gateways.EVENT_BASED_
/*** Marker ***/

// GetSequenceFlow ...
func (adhoc AdHocSubProcess) GetSequenceFlow(num int) flow.SEQUENCE_FLOW_PTR {
func (adhoc AdHocSubProcess) GetSequenceFlow(num int) *flow.SequenceFlow {
return &adhoc.SequenceFlow[num]
}
2 changes: 1 addition & 1 deletion pkg/subprocesses/SubProcess.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,6 @@ func (subprocess SubProcess) GetOutgoing(num int) *marker.Outgoing {
}

// GetSequenceFlow ...
func (subprocess SubProcess) GetSequenceFlow(num int) flow.SEQUENCE_FLOW_PTR {
func (subprocess SubProcess) GetSequenceFlow(num int) *flow.SequenceFlow {
return &subprocess.SequenceFlow[num]
}
2 changes: 1 addition & 1 deletion pkg/subprocesses/Transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@ func (transaction Transaction) GetOutgoing(num int) *marker.Outgoing {
}

// GetSequenceFlow ...
func (transaction Transaction) GetSequenceFlow(num int) flow.SEQUENCE_FLOW_PTR {
func (transaction Transaction) GetSequenceFlow(num int) *flow.SequenceFlow {
return &transaction.SequenceFlow[num]
}

0 comments on commit 76e2d81

Please sign in to comment.