org.codehaus.xfire.service
Interface Visitable

All Known Implementing Classes:
FaultInfo, MessageInfo, MessagePartInfo, OperationInfo, Service, ServiceInfo

public interface Visitable

Indicates that a class may be visited by a Visitor.

Used to recurse into ServiceInfo, OperationInfo, MessageInfo, etc.

Author:
Arjen Poutsma
See Also:
Visitor

Method Summary
 void accept(Visitor visitor)
          Acceps the given visitor.
 

Method Detail

accept

public void accept(Visitor visitor)
Acceps the given visitor. Subclasses are required to call the begin* method on the given visitor, iterate over their members, call accept(org.codehaus.xfire.service.Visitor) for each of them, and call end*.

Parameters:
visitor - the visitor.


Copyright © 2004-2006 null. All Rights Reserved.