|
PicoContainer example source code file (ObjectReference.java)
The PicoContainer ObjectReference.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;
/**
* A way to refer to objects that are stored in "awkward" places (for example inside a
* <code>HttpSession or {@link ThreadLocal}).
* <p/>
* This interface is typically implemented by someone integrating Pico into an existing container.
*
* @author Joe Walnes
*/
public interface ObjectReference {
/**
* Retrieve an actual reference to the object. Returns null if the reference is not available
* or has not been populated yet.
*
* @return an actual reference to the object.
*/
Object get();
/**
* Assign an object to the reference.
*
* @param item the object to assign to the reference. May be <code>null.
*/
void set(Object item);
}
Other PicoContainer examples (source code examples)Here is a short list of links related to this PicoContainer ObjectReference.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.