All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.echocat.locela.api.java.annotations.AnnotationContainer Maven / Gradle / Ivy

package org.echocat.locela.api.java.annotations;

import javax.annotation.Nonnull;

public interface AnnotationContainer {

    @Nonnull
    Iterable annotations();

    @Nonnull
     Iterable annotations(@Nonnull Class ofType);

    void addAnnotation(@Nonnull Annotation annotation);

    void removeAnnotation(@Nonnull Annotation annotation);

    void removeAnnotations(@Nonnull Class ofType);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy