Skip to content

Commit

Permalink
Merge pull request #1199 from alesshosry/1198-Add-an-entry-in-Library…
Browse files Browse the repository at this point in the history
…-menu-to-load-the-Meta-Model

Adding MoosePy to menu library in Moose
  • Loading branch information
jecisc authored Oct 18, 2024
2 parents 436e408 + cf68a3b commit 7b07aac
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/MooseIDE-Core/MooseLoadMoosePyMenuCommand.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Class {
#name : #MooseLoadMoosePyMenuCommand,
#superclass : #MooseAbstractLoadFamixMenuCommand,
#category : #'MooseIDE-Core-MenuBar'
}

{ #category : #accessing }
MooseLoadMoosePyMenuCommand class >> help [

^ 'Famix Metamodel for Python'
]

{ #category : #accessing }
MooseLoadMoosePyMenuCommand class >> label [

^ 'MoosePy'
]

{ #category : #accessing }
MooseLoadMoosePyMenuCommand class >> menuPriority [

^super menuPriority + 1
]

{ #category : #accessing }
MooseLoadMoosePyMenuCommand >> baselineName [

^ 'MoosePy'
]

{ #category : #accessing }
MooseLoadMoosePyMenuCommand >> repositoryURL [

^ 'github://moosetechnology/MoosePy:' , self version , '/src'
]

{ #category : #accessing }
MooseLoadMoosePyMenuCommand >> version [

^ 'master'
]

0 comments on commit 7b07aac

Please sign in to comment.