Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup Glamour browser tabulator classes #6287

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Glamour-Browsers/GLMCustomCell.class.st
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"
Abstract superclass for custom rows or columns in a glamour tabulator browser
"
Class {
#name : #GLMCustomCell,
#superclass : #Object,
Expand All @@ -11,6 +14,11 @@ Class {
#category : #'Glamour-Browsers-Tabulator'
}

{ #category : #testing }
GLMCustomCell class >> isAbstract [
^self == GLMCustomCell
]

{ #category : #accessing }
GLMCustomCell >> browser [

Expand Down
3 changes: 3 additions & 0 deletions src/Glamour-Browsers/GLMCustomColumn.class.st
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"
A custom column in a glamour tabulator browser
"
Class {
#name : #GLMCustomColumn,
#superclass : #GLMCustomCell,
Expand Down
3 changes: 3 additions & 0 deletions src/Glamour-Browsers/GLMCustomRow.class.st
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"
A custom row in a glamour tabulator browser
"
Class {
#name : #GLMCustomRow,
#superclass : #GLMCustomCell,
Expand Down