generated from hpi-swa-teaching/SWT-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antonia Heinen
committed
Jul 12, 2024
1 parent
1dff006
commit f77702c
Showing
15 changed files
with
33 additions
and
28 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
3 changes: 2 additions & 1 deletion
3
Squello-Core.package/SPBBoard.class/instance/hasModelYellowButtonMenuItems.st
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,3 +1,4 @@ | ||
as yet unclassified | ||
hasModelYellowButtonMenuItems | ||
^ false | ||
|
||
^ false. |
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
3 changes: 1 addition & 2 deletions
3
Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st
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,5 +1,4 @@ | ||
initialize-release | ||
setUpChangeProvider | ||
|
||
self changeProvider projectId: self boardProvider projectId. | ||
"self changeProvider api getWebhookChanges: self changeProvider webhookId." | ||
self changeProvider projectId: self boardProvider projectId. |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
accessing | ||
boards | ||
|
||
boards ifNil: [self boards: Dictionary new]. | ||
boards | ||
ifNil: [self boards: Dictionary new]. | ||
^ boards. |
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,4 +1,5 @@ | ||
save/load | ||
load: anObject | ||
|
||
^ self boards at: anObject ifAbsent: nil. | ||
^ self boards at: anObject | ||
ifAbsent: nil. |
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
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBColumn.class/instance/cardPositions..st
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,4 +1,4 @@ | ||
accessing | ||
cardPositions: aCollection | ||
|
||
cardPositions := aCollection | ||
cardPositions := aCollection. |
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,5 +1,5 @@ | ||
comparing | ||
hash | ||
|
||
"Answer an integer value that is related to the identity of the receiver." | ||
|
||
^ self id hash. |
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,5 +1,6 @@ | ||
accessing | ||
isLastCard: anSPBCard | ||
|
||
self cards isEmpty ifTrue: [^ false]. | ||
self cards isEmpty | ||
ifTrue: [^ false]. | ||
^ self cards last = anSPBCard. |
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,4 +1,4 @@ | ||
accessing | ||
jsonCards: anObject | ||
|
||
jsonCards := anObject | ||
jsonCards := anObject. |
3 changes: 2 additions & 1 deletion
3
Squello-Core.package/SPBColumn.class/instance/minimumHeight.st
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,4 +1,5 @@ | ||
geometry | ||
minimumHeight | ||
|
||
^ minimumHeight ifNil: [minimumHeight := self defaultMinimumHeight]. | ||
^ minimumHeight | ||
ifNil: [minimumHeight := self defaultMinimumHeight]. |
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,4 +1,5 @@ | ||
accessing | ||
pasteup | ||
|
||
^ pasteup ifNil: [pasteup := SPBPluggablePasteUpMorph new]. | ||
^ pasteup | ||
ifNil: [pasteup := SPBPluggablePasteUpMorph new.]. |
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