org.jboss.seam.remoting.annotationparser.syntaxtree
Interface NodeListInterface

All Superinterfaces:
Node, Serializable
All Known Implementing Classes:
NodeList, NodeListOptional, NodeSequence

public interface NodeListInterface
extends Node

The interface which NodeList, NodeListOptional, and NodeSequence implement.


Method Summary
<R> R
accept(GJNoArguVisitor<R> v)
           
<R,A> R
accept(GJVisitor<R,A> v, A argu)
           
<A> void
accept(GJVoidVisitor<A> v, A argu)
           
 void accept(Visitor v)
           
 void addNode(Node n)
           
 Node elementAt(int i)
           
 Enumeration<Node> elements()
           
 int size()
           
 

Method Detail

addNode

void addNode(Node n)

elementAt

Node elementAt(int i)

elements

Enumeration<Node> elements()

size

int size()

accept

void accept(Visitor v)
Specified by:
accept in interface Node

accept

<R,A> R accept(GJVisitor<R,A> v,
               A argu)
Specified by:
accept in interface Node

accept

<R> R accept(GJNoArguVisitor<R> v)
Specified by:
accept in interface Node

accept

<A> void accept(GJVoidVisitor<A> v,
                A argu)
Specified by:
accept in interface Node


Copyright © 2011 Seam Framework. All Rights Reserved.