KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > attributes > CachedRepository


1 /*
2  * Copyright 2003-2004 The Apache Software Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.commons.attributes;
17
18 import java.lang.reflect.Field JavaDoc;
19 import java.lang.reflect.Constructor JavaDoc;
20 import java.lang.reflect.Method JavaDoc;
21 import java.util.Collection JavaDoc;
22
23 /**
24  * An attribute repository cache. Used internally to speed up operation.
25  * All collections returned should be unmodifiable.
26  */

27 interface CachedRepository {
28     
29     public static final CachedRepository EMPTY = new EmptyCachedRepository ();
30     
31     public Collection JavaDoc getAttributes ();
32     public Collection JavaDoc getAttributes (Field JavaDoc f);
33     public Collection JavaDoc getAttributes (Method JavaDoc m);
34     public Collection JavaDoc getParameterAttributes (Method JavaDoc m, int parameter);
35     public Collection JavaDoc getParameterAttributes (Constructor JavaDoc c, int parameter);
36     public Collection JavaDoc getReturnAttributes (Method JavaDoc m);
37     public Collection JavaDoc getAttributes (Constructor JavaDoc c);
38 }
39
Popular Tags