org.picocontainer
public interface PicoVisitor
Since: 1.1
Method Summary | |
---|---|
Object | traverse(Object node)
Entry point for the PicoVisitor traversal. |
void | visitComponentAdapter(ComponentAdapter componentAdapter)
Visit a ComponentAdapter that has to accept the visitor.
|
void | visitContainer(PicoContainer pico)
Visit a PicoContainer that has to accept the visitor.
|
void | visitParameter(Parameter parameter)
Visit a Parameter that has to accept the visitor.
|
Parameters: node the start node of the traversal.
Returns: a visitor-specific value.
Throws: IllegalArgumentException in case of an argument of invalid type.
Since: 1.1
Parameters: componentAdapter the visited ComponentAdapter.
Since: 1.1
Parameters: pico the visited container.
Since: 1.1
Parameters: parameter the visited Parameter.
Since: 1.1