Newer
Older
simple-database / src / nl / astraeus / database / annotations / Column.java
Rien Nentjes on 13 Dec 2016 396 bytes Fix Column annotation not picked up bug
package nl.astraeus.database.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * User: rnentjes
 * Date: 11/13/13
 * Time: 4:13 PM
 */
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.FIELD } )
public @interface Column {

    String name() default "";

}