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

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

Go to download

Java API of a localization framework for an easy and platform independent work.

There is a newer version: 2.0.8
Show newest version
/*****************************************************************************************
 * *** BEGIN LICENSE BLOCK *****
 *
 * Version: MPL 2.0
 *
 * echocat Locela - API for Java, Copyright (c) 2014 echocat
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * *** END LICENSE BLOCK *****
 ****************************************************************************************/

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

import javax.annotation.Nonnull;

public interface AnnotationContainer {

    @Nonnull
    public Iterable annotations();

    @Nonnull
    public  Iterable annotations(@Nonnull Class ofType);

    public void addAnnotation(@Nonnull Annotation annotation);

    public void removeAnnotation(@Nonnull Annotation annotation);

    public void removeAnnotations(@Nonnull Class ofType);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy