Skip to content

Commit

Permalink
Merge pull request #1197 from Inao0/1193-Create-an-entry-in-menu-Libr…
Browse files Browse the repository at this point in the history
…ary-to-load-Famix-PLPgSQL

Add a library menu item to load Famix SQL - Not working yet
  • Loading branch information
ClotildeToullec authored Dec 3, 2024
2 parents dde4fb2 + dfee5cc commit 4294130
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/MooseIDE-Core/MooseLoadFamixSQLMenuCommand.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
Class {
#name : #MooseLoadFamixSQLMenuCommand,
#superclass : #MooseAbstractLoadFamixMenuCommand,
#category : #'MooseIDE-Core-MenuBar'
}

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

^ 'Famix Metamodel for SQL'
]

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

^ 'Famix-SQL'
]

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

^super menuPriority + 1
]

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

^ 'FamixSQL'
]

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

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

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

^ 'main'
]

0 comments on commit 4294130

Please sign in to comment.