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

spoon.examples.stack.annotation.Bound Maven / Gradle / Ivy

The newest version!
package spoon.examples.stack.annotation;

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

/**
 * This annotation is used to annotate our stack class to make it bounded.
 */
@Target(ElementType.TYPE)
public @interface Bound {
    int max() default 10;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy