Skip to content

Commit

Permalink
Merge pull request #835 from moosetechnology/817-MiMetaBrowserModel-n…
Browse files Browse the repository at this point in the history
…ot-subclass-of-MiAbstractModel

Fixing issue #817
  • Loading branch information
alesshosry authored Apr 28, 2023
2 parents 41c703f + e2f0bb3 commit a5076c6
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/MooseIDE-Meta/MiMetaBrowserModel.class.st
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
Class {
#name : #MiMetaBrowserModel,
#superclass : #Object,
#superclass : #MiAbstractModel,
#instVars : [
'selected'
'selected',
'entities'
],
#category : #'MooseIDE-Meta-MetaBrowser'
}

{ #category : #accessing }
MiMetaBrowserModel >> entities [

^ entities
]

{ #category : #accessing }
MiMetaBrowserModel >> entities: anObject [

entities := anObject
]

{ #category : #accessing }
MiMetaBrowserModel >> selected [

Expand Down

0 comments on commit a5076c6

Please sign in to comment.