KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > examples > nton > src > C


1 package spoon.examples.nton.src;
2
3 import spoon.examples.nton.annotation.Nton;
4
5 @Nton(n = 5)
6 public class C {
7
8     public static void main(String JavaDoc[] args) {
9         try {
10             System.out.print(".");
11             new C();
12             System.out.print(".");
13             new C();
14             System.out.print(".");
15             new C();
16             System.out.print(".");
17             new C();
18             System.out.print(".");
19             new C();
20             System.out.print(".");
21             new C();
22         } catch (RuntimeException JavaDoc e) {
23             System.out.flush();
24             System.err.println(e.getMessage());
25         }
26     }
27
28 }
29
Popular Tags