public interface ElementInfoVisitor
ElementInfoVisitor defines an interface that can be used
for traversing ElementInfos using with their
accept method.ElementInfo.accept(ElementInfoVisitor)| Modifier and Type | Method and Description |
|---|---|
void |
visit(AtomInfo atom)
Method that is called from the atom infos
accept method. |
void |
visit(ContainerInfo container)
Method that is called from the container infos
accept method. |
void |
visit(ContainerListInfo containerList)
Method that is called from the containerlist infos
accept
method. |
void visit(AtomInfo atom) throws ContentBusException
accept method.atom - the atom info that calls this methodContentBusException - if an error occurred. This visiting should be
aborted.void visit(ContainerInfo container) throws ContentBusException
accept method.container - the container info that calls this methodContentBusException - if an error occurred. This visiting should be
aborted.void visit(ContainerListInfo containerList) throws ContentBusException
accept
method.containerList - the container info that calls this methodContentBusException - if an error occurred. This visiting should be
aborted.