KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > codegen > Tutorial2


1 /*
2  * Tutorial class.
3  */

4 package org.netbeans.test.codegen;
5
6 /**
7  * This class will be modified by demo.
8  */

9 public class Tutorial2 {
10     
11     public Tutorial2() {
12     }
13     
14     public void demoMethod() {
15         // replace the tag {0} with something meaningful
16
System.err.println("This method is used for demo only");
17     }
18     
19 }
20
Popular Tags