coins.ast
クラス DeclaratorList
java.lang.Object
|
+--coins.ast.ASTree
|
+--coins.ast.ASTList
|
+--coins.ast.DeclaratorList
- すべての実装インタフェース:
- java.io.Serializable
- public class DeclaratorList
- extends ASTList
A linked list of Declarator
objects.
- 関連項目:
- 直列化された形式
クラス coins.ast.ASTList から継承したメソッド |
append, concat, getLeft, getRight, head, rightToString, setHead, setLeft, setRight, setTail, subst, tail |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
DeclaratorList
public DeclaratorList(Declarator d)
DeclaratorList
public DeclaratorList(Declarator d,
DeclaratorList rest)
accept
public void accept(Visitor v)
- クラス
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.
- オーバーライド:
- クラス
ASTList
内の accept
getTag
protected java.lang.String getTag()
- クラス
ASTree
の記述:
- Returns the type of this node. This method is used by
toString()
.
- オーバーライド:
- クラス
ASTList
内の getTag
get
public Declarator get()
next
public DeclaratorList next()
putSeparator
protected void putSeparator(java.lang.StringBuffer sbuf)
- オーバーライド:
- クラス
ASTree
内の putSeparator
append
public static DeclaratorList append(DeclaratorList list,
Declarator d)
concat
public static DeclaratorList concat(DeclaratorList list,
DeclaratorList list2)