KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > examples > bound > src > Titi


1 package spoon.examples.bound.src;
2
3 import spoon.examples.bound.annotation.Bound;
4
5 public class Titi {
6
7     public void test(@Bound(min = 5, max = 8)
8     int d) {
9         System.out.println(getClass().getName() + " " + d);
10     }
11
12 }
13
Popular Tags