samples/livedb/src/org/apidesign/livedb/LiveDB.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
parent 357 837370f791ba
permissions -rw-r--r--
Updating to NBMs from NetBeans 8.0.1 as some of them are required to run on JDK8
     1 package org.apidesign.livedb;
     2 
     3 import java.lang.annotation.ElementType;
     4 import java.lang.annotation.Retention;
     5 import java.lang.annotation.RetentionPolicy;
     6 import java.lang.annotation.Target;
     7 
     8 /**
     9  *
    10  * @author Jaroslav Tulach <jtulach@netbeans.org>
    11  */
    12 // BEGIN: livedb.connection.annotation
    13 @Target(ElementType.PACKAGE)
    14 @Retention(RetentionPolicy.SOURCE)
    15 public @interface LiveDB {
    16     String url();
    17     String user();
    18     String password();
    19     String query();
    20     String classname();
    21 }
    22 // END: livedb.connection.annotation