|
|||||||||||||||||||
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 | |||||||||||||||
AggregateProxyFactory.java | - | - | - | - |
|
1 |
package picocontainer.defaults;
|
|
2 |
|
|
3 |
import java.util.List;
|
|
4 |
|
|
5 |
/**
|
|
6 |
*
|
|
7 |
* @author Aslak Hellesøy
|
|
8 |
* @version $Revision: 1.1 $
|
|
9 |
*/
|
|
10 |
public interface AggregateProxyFactory { |
|
11 |
Object createAggregateProxy( |
|
12 |
ClassLoader classLoader, |
|
13 |
List objectsToAggregateCallFor, |
|
14 |
boolean callInReverseOrder
|
|
15 |
); |
|
16 |
} |
|
17 |
|
|