samples/insertsuperclass/src-api2.0/api/SimpleHelloFieldClass.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 29 Aug 2008 15:08:04 +0200
changeset 277 34370a93db6b
permissions -rw-r--r--
Enabling assertions and also demonstrating that fields can be moved up to one level in the class hierarchy
jtulach@277
     1
package api;
jtulach@277
     2
jtulach@277
     3
// BEGIN: design.insert.field.superclass1
jtulach@277
     4
public abstract class SimpleHelloFieldClass {
jtulach@277
     5
    public String field = "Hello";
jtulach@277
     6
// FINISH: design.insert.field.superclass1
jtulach@277
     7
}