querydsl/querydsl-sql/src/main/java/com/mysema/query/sql/Table.java
Timo Westkämper 6375f05f76
2010-02-04 14:18:55 +00:00

32 lines
613 B
Java

/*
* Copyright (c) 2009 Mysema Ltd.
* All rights reserved.
*
*/
package com.mysema.query.sql;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Annotation to be used on Querydsl query types to declare the annotation to be used
*
* @author tiwe
*
*/
@Documented
@Target(TYPE)
@Retention(RUNTIME)
public @interface Table {
/**
* @return
*/
String value();
}