01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.transparency;
05:
06: /**
07: * @author Eugene Kuleshov
08: */
09: public class MatchingClass {
10:
11: private String foo1;
12:
13: private transient String boo1;
14:
15: public String getFoo1() {
16: return foo1;
17: }
18:
19: public void setFoo1(String foo1) {
20: this .foo1 = foo1;
21: }
22:
23: public String getBoo1() {
24: return boo1;
25: }
26:
27: public void setBoo1(String boo1) {
28: this.boo1 = boo1;
29: }
30:
31: }
|