KickJava   Java API By Example, From Geeks To Geeks.

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


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
5 package com.tctest.spring.bean;
6
7
8 public class ScopedBean {
9   private String JavaDoc value = "Jonas";
10   
11   public String JavaDoc getValue() {
12     return value;
13   }
14   
15   public void setValue(String JavaDoc value) {
16     this.value = value;
17   }
18
19 }
20
21
Popular Tags