tools/JavaMethodDeclarationNode.st
branchdevelopment
changeset 2667 5daa560d20d8
child 2711 a00302fe5083
child 2722 1527fdb0c92f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/JavaMethodDeclarationNode.st	Sat Aug 24 17:11:15 2013 +0100
@@ -0,0 +1,27 @@
+"{ Package: 'stx:libjava/tools' }"
+
+JavaMethodLikeDeclarationNode subclass:#JavaMethodDeclarationNode
+	instanceVariableNames:'name returnType'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Java-Parser-AST'
+!
+
+!JavaMethodDeclarationNode methodsFor:'accessing'!
+
+name
+    ^ name
+!
+
+name:aString
+    name := aString.
+!
+
+returnType
+    ^ returnType
+!
+
+returnType:something
+    returnType := something.
+! !
+