samples/livedb/src/org/apidesign/livedb/LiveDB.java
changeset 355 d1e7424dc988
child 357 837370f791ba
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/livedb/src/org/apidesign/livedb/LiveDB.java	Tue Jun 01 12:08:47 2010 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +package org.apidesign.livedb;
     1.5 +
     1.6 +import java.lang.annotation.ElementType;
     1.7 +import java.lang.annotation.Retention;
     1.8 +import java.lang.annotation.RetentionPolicy;
     1.9 +import java.lang.annotation.Target;
    1.10 +
    1.11 +/**
    1.12 + *
    1.13 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.14 + */
    1.15 +@Target(ElementType.PACKAGE)
    1.16 +@Retention(RetentionPolicy.SOURCE)
    1.17 +public @interface LiveDB {
    1.18 +    String classname();
    1.19 +    String field();
    1.20 +}