01: /*
02: * Tutorial class.
03: */
04: package org.netbeans.test.codegen;
05:
06: /**
07: * This class will be modified by demo.
08: */
09: 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: }
|