Back to project page Jello.
The source code is released under:
Apache License
If you think the Android project Jello listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.atteo.jello.associations; //from w w w . jav a 2s.c o m import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.atteo.jello.Storable; @Retention(RetentionPolicy.RUNTIME) @Target( { ElementType.FIELD }) public @interface HasMany { public boolean dependent() default false; public String foreignField(); public Class<? extends Storable> klass(); }