KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > aop > WriteReplaceable


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.cache.aop;
9
10 import java.io.ObjectStreamException JavaDoc;
11
12 /**
13  * @author <a HREF="mailto:harald@gliebe.de">Harald Gliebe</a>
14  */

15
16 public interface WriteReplaceable
17 {
18
19    Object JavaDoc writeReplace() throws ObjectStreamException JavaDoc;
20
21 }
22
Popular Tags