|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Parameter.java | - | - | - | - |
|
1 |
package picocontainer.defaults;
|
|
2 |
|
|
3 |
import picocontainer.PicoContainer;
|
|
4 |
import picocontainer.PicoInstantiationException;
|
|
5 |
import picocontainer.PicoIntrospectionException;
|
|
6 |
|
|
7 |
/**
|
|
8 |
* @author Jon Tirsen (tirsen@codehaus.org)
|
|
9 |
* @version $Revision: 1.2 $
|
|
10 |
*/
|
|
11 |
public interface Parameter { |
|
12 |
Object resolve(PicoContainer picoContainer, ComponentSpecification compSpec, Class targetType) |
|
13 |
throws PicoInstantiationException, PicoIntrospectionException;
|
|
14 |
} |
|
15 |
|
|