diff -r f11943a373a7 -r 0e707eef1e4a samples/livedb/src/org/apidesign/livedb/LiveDB.java --- a/samples/livedb/src/org/apidesign/livedb/LiveDB.java Mon Nov 11 13:17:34 2019 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -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 - */ -// BEGIN: livedb.connection.annotation -@Target(ElementType.PACKAGE) -@Retention(RetentionPolicy.SOURCE) -public @interface LiveDB { - String url(); - String user(); - String password(); - String query(); - String classname(); -} -// END: livedb.connection.annotation