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

com.github.fhtw.swp.tutorium.observer.NotifyObservers Maven / Gradle / Ivy

package com.github.fhtw.swp.tutorium.observer;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation to be used as a marker for a method that allows to notify/update all registered observers.
 *
 * @see Subject
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface NotifyObservers {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy