1
2
3
4
5
6
7
8 package org.codehaus.metaclass.tools.qdox;
9
10 import com.thoughtworks.qdox.model.JavaClass;
11 import com.thoughtworks.qdox.model.JavaField;
12 import com.thoughtworks.qdox.model.JavaMethod;
13 import org.codehaus.metaclass.model.Attribute;
14
15 /***
16 * @author Peter Donald
17 * @version $Revision: 1.5 $ $Date: 2003/11/28 11:14:55 $
18 */
19 class ReplacingAttributeInterceptor
20 extends DefaultQDoxAttributeInterceptor
21 {
22 public Attribute[] processClassAttributes( final JavaClass clazz,
23 final Attribute[] attributes )
24 {
25 return Attribute.EMPTY_SET;
26 }
27
28 public Attribute[] processFieldAttributes( final JavaField field,
29 final Attribute[] attributes )
30 {
31 return Attribute.EMPTY_SET;
32 }
33
34 public Attribute[] processMethodAttributes( final JavaMethod method,
35 final Attribute[] attributes )
36 {
37 return Attribute.EMPTY_SET;
38 }
39 }