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

org.selophane.elements.base.ImplementedBy Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package org.selophane.elements.base;

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

/**
 * Sets the default implementing class for the annotated interface.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ImplementedBy {
    /**
     * Class implementing the interface. (by default)
     */
    Class value() default ElementImpl.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy