blob: 6e781e8c890c309bc97597a72005e7dfddcc2e9a [file] [log] [blame]
package org.codehaus.jackson.map.util;
import java.lang.annotation.Annotation;
/**
* Interface that defines interface for collection of annotations.
*<p>
* Standard mutable implementation is {@link org.codehaus.jackson.map.introspect.AnnotationMap}
*
* @since 1.7
*/
public interface Annotations
{
/**
* Main access method used to find value for given annotation.
*/
public <A extends Annotation> A get(Class<A> cls);
/**
* Returns number of annotation entries in this collection.
*/
public int size();
}