KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > admin > dso > ClassTreeLeaf


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.admin.dso;
5
6 public class ClassTreeLeaf extends ClassTreeTwig {
7   int instanceCount;
8
9   public ClassTreeLeaf(String JavaDoc name) {
10     super(name);
11   }
12
13   public void setInstanceCount(int instanceCount) {
14     this.instanceCount = instanceCount;
15   }
16
17   public int getInstanceCount() {
18     return instanceCount;
19   }
20 }
21
Popular Tags