We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 555efc6 + a676978 commit dc70623Copy full SHA for dc70623
src/Famix-Java-Entities/FamixJavaClass.class.st
@@ -173,6 +173,18 @@ FamixJavaClass >> methodsWithoutSutbsAndConstructors [
173
each isStub not and: [each isConstructor not]]) asSet
174
]
175
176
+{ #category : #'as yet unclassified' }
177
+FamixJavaClass >> mooseNameOn: aStream [
178
+
179
+ self typeContainer ifNotNil: [ :parent |
180
+ | separator |
181
+ parent mooseNameOn: aStream.
182
+ separator := '::'.
183
+ self isInnerClass ifTrue: [ separator := '$' ].
184
+ aStream nextPutAll: separator ].
185
+ self name ifNotNil: [ :n | aStream nextPutAll: n ]
186
+]
187
188
{ #category : #'Famix-Extensions' }
189
FamixJavaClass >> structuralChildren [
190
^ (OrderedCollection withAll: self methods), self attributes
0 commit comments