mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
32 lines
613 B
Java
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();
|
|
|
|
}
|