com.grosner.dbflow.annotation.ContainerAdapter Maven / Gradle / Ivy
package com.grosner.dbflow.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Author: andrewgrosner
* Description: Will generate a $Container class definition for the Model class. It is required when using
* ModelContainers, that we mark every contained class with this annotation so we can handle them properly.
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface ContainerAdapter {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy