samples/insertsuperclass/src-api2.0/api/HelloClass.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:59:27 +0200
changeset 181 81d72f69fa42
parent 180 131332825eab
permissions -rw-r--r--
Incorporating Patrick's changes. I am not reall sure about the changes after the war, it is really 'or' it cannot be 'and'. I will change that when I do the reading through the whole chapter.
     1 package api;
     2 
     3 // BEGIN: design.insert.superclass2
     4 public abstract class HelloClass extends SimpleHelloClass {
     5 // FINISH: design.insert.superclass2
     6     public abstract String sayHelloTo(String who);
     7 }