|
PicoContainer example source code file (TraversalCheckingVisitor.java)
The PicoContainer TraversalCheckingVisitor.java source code
/*****************************************************************************
* Copyright (C) PicoContainer Organization. All rights reserved. *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file. *
*****************************************************************************/
package org.picocontainer.visitors;
import org.picocontainer.ComponentAdapter;
import org.picocontainer.Parameter;
import org.picocontainer.PicoContainer;
import org.picocontainer.visitors.AbstractPicoVisitor;
/**
* Concrete implementation of Visitor which simply checks traversals.
* This can be a useful class for other Visitor implementations to extend,
* as it provides a default implementation in case you one is only interested
* in one PicoVisitor type. Example:
*
*<pre>
* PicoContainer container = new DefaultPicoContainer();
* PicoContainer child = container.makeChildContainer();
*
* final List allContainers = new ArrayList();
*
* PicoVisitor visitor = new TraversalCheckingVisitor() {
* public void visitContainer(PicoContainer pico) {
* super.visitContainer(pico); //Calls checkTraversal for us.
* allContainers.add(pico);
* }
* }
* </pre>
*
* @author Micheal Rimov
*/
public class TraversalCheckingVisitor
extends AbstractPicoVisitor {
public void visitContainer(PicoContainer pico) {
checkTraversal();
}
public void visitComponentAdapter(ComponentAdapter componentAdapter) {
checkTraversal();
}
public void visitParameter(Parameter parameter) {
checkTraversal();
}
}
Other PicoContainer examples (source code examples)Here is a short list of links related to this PicoContainer TraversalCheckingVisitor.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.