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 MatchingSubclass2 implements MarkerInterface {
10:
11: private String foo;
12:
13: private transient String boo;
14:
15: public String getFoo() {
16: return foo;
17: }
18:
19: public void setFoo(String foo) {
20: this .foo = foo;
21: }
22:
23: public void setBoo(String boo) {
24: this .boo = boo;
25: }
26:
27: public String getBoo() {
28: return boo;
29: }
30:
31: }
|