-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename
GtFilterModelItem
subclasses [feenkcom/gtoolkit#3983]
- Loading branch information
1 parent
d3d62d4
commit 13258dd
Showing
20 changed files
with
103 additions
and
101 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
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
15 changes: 15 additions & 0 deletions
15
src/GToolkit-Coder-UI/GtFilterModelAbstractMethodItem.class.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,15 @@ | ||
Class { | ||
#name : #GtFilterModelAbstractMethodItem, | ||
#superclass : #GtFilterModelMethodDefinitionItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterModelAbstractMethodItem >> isSubclassResponsibilityMethod [ | ||
^ true | ||
] | ||
|
||
{ #category : #accessing } | ||
GtFilterModelAbstractMethodItem >> label [ | ||
^ 'abstract' | ||
] |
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
10 changes: 10 additions & 0 deletions
10
src/GToolkit-Coder-UI/GtFilterModelClassOriginItem.class.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,10 @@ | ||
Class { | ||
#name : #GtFilterModelClassOriginItem, | ||
#superclass : #GtFilterModelMethodOriginItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #accessing } | ||
GtFilterModelClassOriginItem >> label [ | ||
^ 'non-trait' | ||
] |
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,10 @@ | ||
Class { | ||
#name : #GtFilterModelClassSideItem, | ||
#superclass : #GtFilterModelSideItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #accessing } | ||
GtFilterModelClassSideItem >> label [ | ||
^ 'class' | ||
] |
10 changes: 10 additions & 0 deletions
10
src/GToolkit-Coder-UI/GtFilterModelDefinedMethodItem.class.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,10 @@ | ||
Class { | ||
#name : #GtFilterModelDefinedMethodItem, | ||
#superclass : #GtFilterModelMethodDefinitionItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterModelDefinedMethodItem >> label [ | ||
^ 'defined' | ||
] |
15 changes: 15 additions & 0 deletions
15
src/GToolkit-Coder-UI/GtFilterModelInstanceSideItem.class.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,15 @@ | ||
Class { | ||
#name : #GtFilterModelInstanceSideItem, | ||
#superclass : #GtFilterModelSideItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterModelInstanceSideItem >> isInstanceSideMethod [ | ||
^ true | ||
] | ||
|
||
{ #category : #accessing } | ||
GtFilterModelInstanceSideItem >> label [ | ||
^ 'instance' | ||
] |
4 changes: 2 additions & 2 deletions
4
...ortListModelMethodDefinitionItem.class.st → ...tFilterModelMethodDefinitionItem.class.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,10 +1,10 @@ | ||
Class { | ||
#name : #GtFilterShortListModelMethodDefinitionItem, | ||
#name : #GtFilterModelMethodDefinitionItem, | ||
#superclass : #GtFilterModelItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterShortListModelMethodDefinitionItem >> isSubclassResponsibilityMethod [ | ||
GtFilterModelMethodDefinitionItem >> isSubclassResponsibilityMethod [ | ||
^ false | ||
] |
4 changes: 2 additions & 2 deletions
4
...erShortListModelMethodOriginItem.class.st → ...UI/GtFilterModelMethodOriginItem.class.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,10 +1,10 @@ | ||
Class { | ||
#name : #GtFilterShortListModelMethodOriginItem, | ||
#name : #GtFilterModelMethodOriginItem, | ||
#superclass : #GtFilterModelItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterShortListModelMethodOriginItem >> isTraitOrigin [ | ||
GtFilterModelMethodOriginItem >> isTraitOrigin [ | ||
^ false | ||
] |
4 changes: 2 additions & 2 deletions
4
...der-UI/GtFilterShortListSideItem.class.st → ...t-Coder-UI/GtFilterModelSideItem.class.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,10 +1,10 @@ | ||
Class { | ||
#name : #GtFilterShortListSideItem, | ||
#name : #GtFilterModelSideItem, | ||
#superclass : #GtFilterModelItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterShortListSideItem >> isInstanceSideMethod [ | ||
GtFilterModelSideItem >> isInstanceSideMethod [ | ||
^ 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
15 changes: 15 additions & 0 deletions
15
src/GToolkit-Coder-UI/GtFilterModelTraitOriginItem.class.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,15 @@ | ||
Class { | ||
#name : #GtFilterModelTraitOriginItem, | ||
#superclass : #GtFilterModelMethodOriginItem, | ||
#category : #'GToolkit-Coder-UI-Filters - Models' | ||
} | ||
|
||
{ #category : #testing } | ||
GtFilterModelTraitOriginItem >> isTraitOrigin [ | ||
^ true | ||
] | ||
|
||
{ #category : #accessing } | ||
GtFilterModelTraitOriginItem >> label [ | ||
^ 'trait' | ||
] |
10 changes: 0 additions & 10 deletions
10
src/GToolkit-Coder-UI/GtFilterShortListClassSideItem.class.st
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/GToolkit-Coder-UI/GtFilterShortListInstanceSideItem.class.st
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/GToolkit-Coder-UI/GtFilterShortListModelAbstractMethodItem.class.st
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/GToolkit-Coder-UI/GtFilterShortListModelClassOriginItem.class.st
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/GToolkit-Coder-UI/GtFilterShortListModelDefinedMethodItem.class.st
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/GToolkit-Coder-UI/GtFilterShortListModelTraitOriginItem.class.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