Skip to content

Commit

Permalink
Merge pull request #1242 from moosetechnology/addCallgraphMenu
Browse files Browse the repository at this point in the history
Add callgraph menu
  • Loading branch information
ClotildeToullec authored Nov 25, 2024
2 parents 2a22aeb + e616ba2 commit 413a6eb
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/MooseIDE-Core/MooseLoadFamixCallGraphMenuCommand.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Class {
#name : #MooseLoadFamixCallGraphMenuCommand,
#superclass : #MooseAbstractLoadToolMenuCommand,
#category : #'MooseIDE-Core-MenuBar'
}

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

^ 'Load the Callgraph browser for Java (this loads FASTJava).'
]

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

^ 'Java CallGraph'
]

{ #category : #'world menu' }
MooseLoadFamixCallGraphMenuCommand class >> menuCommandOn: aBuilder [

<worldMenu>
^ self menuCommandOn: aBuilder forCommand: self
]

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

^ super menuPriority + 1
]

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

^ 'FamixCallGraph'
]

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

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

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


^ 'v3'
]

0 comments on commit 413a6eb

Please sign in to comment.