KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > transparency > MatchingSubclass2


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

4 package com.tctest.transparency;
5
6 /**
7  * @author Eugene Kuleshov
8  */

9 public class MatchingSubclass2 implements MarkerInterface {
10
11   private String JavaDoc foo;
12   
13   public String JavaDoc getFoo() {
14     return foo;
15   }
16   
17   public void setFoo(String JavaDoc foo) {
18     this.foo = foo;
19   }
20   
21 }
22
Popular Tags