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.
specified missing parameters, specfied objects in loops, remove imple…
…mentation details in instance variables
- Loading branch information
tk
committed
Aug 2, 2022
1 parent
5e7c5be
commit f415dca
Showing
65 changed files
with
172 additions
and
172 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
id: anObject | ||
id: aNumber | ||
|
||
id := anObject. | ||
id := aNumber. |
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 | ||
username: anObject | ||
username: aString | ||
|
||
username := anObject. | ||
username := aString. |
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
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBAuthenticationForm.class/instance/buildButtons..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
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputFields..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
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBAuthenticationForm.class/instance/buildInputPanel..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,9 +1,9 @@ | ||
toolbuilder | ||
buildInputPanel: builder | ||
buildInputPanel: aBuilder | ||
|
||
^ builder pluggablePanelSpec new | ||
^ aBuilder pluggablePanelSpec new | ||
model: self; | ||
layout: #vertical; | ||
children: (self buildInputFields: builder); | ||
children: (self buildInputFields: aBuilder); | ||
frame: (0@0 corner: 1@1); | ||
yourself. |
8 changes: 4 additions & 4 deletions
8
Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..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,12 +1,12 @@ | ||
toolbuilder | ||
buildWith: builder | ||
buildWith: aBuilder | ||
|
||
^ builder build: (builder pluggableDialogSpec new | ||
^ aBuilder build: (aBuilder pluggableDialogSpec new | ||
model: self; | ||
label: #labelString; | ||
extent: 600@60; | ||
exclusive: false; | ||
message: 'Insert GitHub authentication data:'; | ||
children: {self buildInputPanel: builder}; | ||
buttons: (self buildButtons: builder); | ||
children: {self buildInputPanel: aBuilder}; | ||
buttons: (self buildButtons: aBuilder); | ||
yourself). |
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
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..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 @@ | ||
toolbuilder | ||
buildColumnSpecWith: aBuilder | ||
|
||
^ self columns collect: [:each | self buildColumnSpecWith: aBuilder and: each]. | ||
^ self columns collect: [:column | self buildColumnSpecWith: aBuilder and: column]. |
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/SPBCard.class/instance/addAssigneeLocal..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
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
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBCard.class/instance/assigneeModel..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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
assigneeModel: aTextMorph | ||
|
||
assigneeModel := aTextMorph. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
assigneeModel | ||
|
||
^ assigneeModel. |
4 changes: 0 additions & 4 deletions
4
Squello-Core.package/SPBCard.class/instance/assigneeMorph..st
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ buildAssignee | |
|
||
self | ||
addMorph: assigneeMorph; | ||
assigneeMorph: assigneeMorph. | ||
assigneeModel: assigneeMorph. |
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 |
---|---|---|
|
@@ -9,5 +9,5 @@ buildTitle | |
yourself. | ||
|
||
self | ||
titleMorph: titleMorph; | ||
titleModel: titleMorph; | ||
addMorph: titleMorph. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
labelModels: aCollection | ||
|
||
labelModels := 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
labelModels | ||
|
||
^ labelModels ifNil: [labelModels := OrderedCollection new]. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBCard.class/instance/lowerHalfIndicator..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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
lowerHalfIndicator: anSPBIndicatorDetectionCard | ||
|
||
lowerHalfIndicator := anSPBIndicatorDetectionCard. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBCard.class/instance/lowerHalfIndicator.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
lowerHalfIndicator | ||
|
||
^ lowerHalfIndicator. |
4 changes: 0 additions & 4 deletions
4
Squello-Core.package/SPBCard.class/instance/lowerHalfMorph..st
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
Squello-Core.package/SPBCard.class/instance/lowerHalfMorph.st
This file was deleted.
Oops, something went wrong.
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
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBCard.class/instance/resizeIndicatorFields.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,8 +1,8 @@ | ||
updating-local | ||
resizeIndicatorFields | ||
|
||
self upperHalfMorph | ||
self upperHalfIndicator | ||
extent: self cardIndicatorExtent. | ||
self lowerHalfMorph | ||
position: self position + (0 @ self extent y / 2); | ||
self lowerHalfIndicator | ||
position: self position + (0@ self extent y / 2); | ||
extent: self cardIndicatorExtent. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
titleModel: aTextMorph | ||
|
||
titleModel := aTextMorph. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
titleModel | ||
|
||
^ titleModel. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBCard.class/instance/upperHalfIndicator..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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
upperHalfIndicator: anSPBIndicatorDetectionCard | ||
|
||
upperHalfIndicator := anSPBIndicatorDetectionCard. |
Oops, something went wrong.