KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > spring > bean > SingletonDelegator


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.tctest.spring.bean;
5
6
7 public class SingletonDelegator extends Singleton {
8     
9     public int getCounter() {
10       return super.getCounter();
11     }
12
13     public void incrementCounter() {
14       super.incrementCounter();
15     }
16     
17     public String JavaDoc getTransientValue() {
18       return super.getTransientValue();
19     }
20     
21     public void setTransientValue(String JavaDoc transientValue) {
22       super.setTransientValue(transientValue);
23     }
24
25     public String JavaDoc toString() {
26       return super.toString();
27     }
28
29 }
30
31
Popular Tags