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

com.buschmais.xo.api.annotation.Abstract Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package com.buschmais.xo.api.annotation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

/**
 * Declares a type as abstract, i.e. it is only allowed to createa an instance
 * from a non-abstract extending type or as a composite with at least
 * non-abstract type.
 */
@Target(TYPE)
@Retention(RUNTIME)
public @interface Abstract {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy