joosc.abstracter
Class GenericMethod

java.lang.Object
  extended byjoosc.abstracter.GenericMethod

public class GenericMethod
extends java.lang.Object


Nested Class Summary
static class GenericMethod.Modifier
           
 
Field Summary
static GenericMethod.Modifier ABSTRACT
           
static GenericMethod.Modifier FINAL
           
static GenericMethod.Modifier STATIC
           
static GenericMethod.Modifier SYNCHRONIZED
           
 
Constructor Summary
GenericMethod(Token name, PReturntype returntype, AFormalList formals, GenericMethod.Modifier modifier)
           
 
Method Summary
 AFormalList getFormals()
           
 GenericMethod.Modifier getModifier()
           
 java.lang.String getName()
           
 Token getNameToken()
           
 PReturntype getReturntype()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATIC

public static final GenericMethod.Modifier STATIC

FINAL

public static final GenericMethod.Modifier FINAL

ABSTRACT

public static final GenericMethod.Modifier ABSTRACT

SYNCHRONIZED

public static final GenericMethod.Modifier SYNCHRONIZED
Constructor Detail

GenericMethod

public GenericMethod(Token name,
                     PReturntype returntype,
                     AFormalList formals,
                     GenericMethod.Modifier modifier)
Method Detail

getName

public java.lang.String getName()

getReturntype

public PReturntype getReturntype()

getFormals

public AFormalList getFormals()

getModifier

public GenericMethod.Modifier getModifier()

getNameToken

public Token getNameToken()