![JAR search and dependency download from the Maven repository](/logo.png)
spoon.examples.bound.src.Main Maven / Gradle / Ivy
The newest version!
package spoon.examples.bound.src;
import spoon.examples.bound.annotation.Bound;
public class Main {
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
try {
new Main().m(i);
} catch (RuntimeException e) {
System.out.println(e.getMessage());
}
}
}
public void m(@Bound(min = 2d, max = 8d) int a) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy