diff -r 000000000000 -r d1e7424dc988 samples/livedb/src/org/apidesign/livedb/LiveDB.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/livedb/src/org/apidesign/livedb/LiveDB.java Tue Jun 01 12:08:47 2010 +0200 @@ -0,0 +1,17 @@ +package org.apidesign.livedb; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * + * @author Jaroslav Tulach + */ +@Target(ElementType.PACKAGE) +@Retention(RetentionPolicy.SOURCE) +public @interface LiveDB { + String classname(); + String field(); +}