strangedb/src/main/java/org/warp/jcwdb/ann/DBPrimitiveField.java
2019-03-06 20:12:20 +01:00

14 lines
331 B
Java

package org.warp.jcwdb.ann;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface DBPrimitiveField {
int id();
DBPrimitiveType type();
}