All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.argo.sqlite.annotations.Table Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.argo.sqlite.annotations;

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

/**
 * Created by user on 8/13/15.
 */
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.TYPE})
public @interface Table {

    /**
     * Table Name
     * @return String
     */
    String value() default "";

    /**
     * Database Tag
     * @return String
     */
    String context() default "default";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy