01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.config.schema;
05:
06: public class TestInstrumentedClass implements InstrumentedClass {
07:
08: public boolean isInclude() {
09:
10: return false;
11: }
12:
13: public String 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: }
|