Skip to content

Commit

Permalink
Renamed shapes package
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 28, 2023
1 parent 368d2d5 commit 843325e
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNActivityShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'border'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'ston-core' }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNBoundaryEventShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'borderIn',
'borderOut'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'subprocessIcon',
'border'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'ston-core' }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNDataFlowShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Class {
'shape',
'borderColor'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #rendering }
Expand Down
4 changes: 2 additions & 2 deletions repository/OpenPonk-BPMN/OPBPMNDataObjectShape.class.st
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Class {
#name : #OPBPMNDataObjectShape,
#superclass : #OPShape,
#superclass : #OPBoundNode,
#instVars : [
'icon',
'borderColor'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #update }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNEdgeLabel.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNEdgeLabel,
#superclass : #OPEdgeLabel,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'as yet unclassified' }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNEdgeShape.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNEdgeShape,
#superclass : #OPEdge,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'as yet unclassified' }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNEndEventShape.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNEndEventShape,
#superclass : #OPBPMNEventShape,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNEventShape.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNEventShape,
#superclass : #OPBPMNNodeShape,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNFlowShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'shape'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'as yet unclassified' }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNGatewayShape.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNGatewayShape,
#superclass : #OPBPMNNodeShape,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNIntermediateEventShape,
#superclass : #OPBPMNEventShape,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNMessageShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'shape'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #hooks }
Expand Down
4 changes: 2 additions & 2 deletions repository/OpenPonk-BPMN/OPBPMNNodeShape.class.st
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Class {
#name : #OPBPMNNodeShape,
#superclass : #OPShape,
#superclass : #OPBoundNode,
#instVars : [
'icon',
'borderColor'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #'ston-core' }
Expand Down
4 changes: 2 additions & 2 deletions repository/OpenPonk-BPMN/OPBPMNPoolShape.class.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Class {
#name : #OPBPMNPoolShape,
#superclass : #OPShape,
#superclass : #OPBoundNode,
#instVars : [
'label',
'laneLines',
Expand All @@ -9,7 +9,7 @@ Class {
'b2',
'borderColor'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #adding }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNStartEventShape.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Class {
#instVars : [
'border'
],
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-BPMN/OPBPMNSubProcessShape.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Class {
#name : #OPBPMNSubProcessShape,
#superclass : #OPBPMNNodeShape,
#category : #'OpenPonk-BPMN-DiagramElements'
#category : #'OpenPonk-BPMN-Shapes'
}

{ #category : #connecting }
Expand Down

0 comments on commit 843325e

Please sign in to comment.