KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > spring > aj > IInstrumentedBean


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.aj;
5
6 public interface IInstrumentedBean {
7
8   public String JavaDoc getProperty1();
9   public String JavaDoc getProperty2();
10
11   public void setValue(String JavaDoc value);
12   public Object JavaDoc getValue();
13
14   public void setTransientValue(String JavaDoc transientValue);
15   public Object JavaDoc getTransientValue();
16
17
18 }
19
Popular Tags