KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > config > NullInstrumentationDescriptor


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.config;
5
6 import com.tc.aspectwerkz.reflect.ClassInfo;
7
8 public class NullInstrumentationDescriptor implements InstrumentationDescriptor {
9
10   public String JavaDoc getOnLoadMethodIfDefined() {
11     return null;
12   }
13
14   public String JavaDoc getOnLoadScriptIfDefined() {
15     return null;
16   }
17
18   public boolean isCallConstructorOnLoad() {
19     return false;
20   }
21
22   public boolean isHonorTransient() {
23     return false;
24   }
25   
26   public boolean isHonorVolatile() {
27     return false;
28   }
29
30   public boolean matches(ClassInfo classInfo) {
31     throw new AssertionError JavaDoc();
32   }
33
34   public boolean isInclude() {
35     return false;
36   }
37   
38   public boolean isExclude() {
39     return false;
40   }
41
42 }
43
Popular Tags