querydsl/querydsl-sql/src/test/java/com/mysema/query/ExcludeIn.java
2009-10-08 12:30:44 +00:00

26 lines
535 B
Java

/*
* Copyright (c) 2009 Mysema Ltd.
* All rights reserved.
*
*/
package com.mysema.query;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* ExcludeIn provides
*
* @author tiwe
* @version $Id$
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Inherited
public @interface ExcludeIn {
com.mysema.query.Target[] value();
}