classUtils.javassist.compiler.ast
Class Member

java.lang.Object
  extended by classUtils.javassist.compiler.ast.ASTree
      extended by classUtils.javassist.compiler.ast.Symbol
          extended by classUtils.javassist.compiler.ast.Member
All Implemented Interfaces:
java.io.Serializable

public class Member
extends Symbol

Member name.

See Also:
Serialized Form

Constructor Summary
Member(java.lang.String name)
           
 
Method Summary
 void accept(Visitor v)
          Is a method for the visitor pattern.
 
Methods inherited from class classUtils.javassist.compiler.ast.Symbol
get, toString
 
Methods inherited from class classUtils.javassist.compiler.ast.ASTree
getLeft, getRight, setLeft, setRight
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Member

public Member(java.lang.String name)
Method Detail

accept

public void accept(Visitor v)
            throws CompileError
Description copied from class: ASTree
Is a method for the visitor pattern. It calls atXXX() on the given visitor, where XXX is the class name of the node object.

Overrides:
accept in class Symbol
Throws:
CompileError