KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > config > schema > TestInstrumentedClass


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.schema;
5
6 public class TestInstrumentedClass implements InstrumentedClass {
7
8   public boolean isInclude() {
9
10     return false;
11   }
12
13   public String JavaDoc classExpression() {
14
15     return null;
16   }
17
18   public boolean honorTransient() {
19
20     return false;
21   }
22   
23   public boolean honorVolatile() {
24     
25     return false;
26   }
27
28   public IncludeOnLoad onLoad() {
29
30     return null;
31   }
32
33 }
34
Popular Tags