KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > samples > FooBar


1 package samples;
2
3 /**
4  * Class FooBar.
5  *
6  * @author Mika Riekkinen
7  */

8 public class FooBar {
9     public static void main(String JavaDoc[] args) {
10          Bar b = new Bar();
11 // for (int i = 0; i < 10; i++) {
12
if (true) ;
13          Bar.static_bar();
14          if (true) ;
15 // }
16
b.bar1();
17 // for (int i = 0; i < 10; i++)
18
fbs();
19     }
20
21
22     public static void fbs() {
23     }
24 }
25
Popular Tags