KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > field > TestTargetClass


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.field;
5
6
7 public class TestTargetClass {
8   private int field = 0;
9   
10   protected int getField() {
11     // this method here just to silence the compiler warning
12
return field;
13   }
14
15 }
16
Popular Tags