![JAR search and dependency download from the Maven repository](/logo.png)
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