robin e54cea564b 1. add tapestry support
2. enhance wicket support
3. merge parent.plugin, parent.product with parent.general
2012-05-22 22:07:19 +08:00

17 lines
408 B
Java

package com.pmease.commons.hibernate;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import com.google.inject.BindingAnnotation;
@Retention(RUNTIME)
@Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
@BindingAnnotation
public @interface Hibernate {
}