> From: Paul Hammant [mailto:[EMAIL PROTECTED]]
>
> 3) Code blocks.  They go cente justified and narrow (which I do not 
> like) See . 
> http://jakarta.apache.org/avalon/framework/separation-of-interface
> -and-implementation.html 

Looking good, I agree:


Simons,

just one trivial issue:

package helloworld.impl.default;
                        ^^^^^^^

this will not compile as default is a reserved word.
Suggest change to:

package helloworld.impl.local;

public class LocalHelloWorld implements HelloWorld {
    void sayHello(String greeting) {
        System.out.println("HelloWorld Greeting: " + greeting);
    }
}

I'm ready to do the change, but I do not know if you are still
working on the files.

/LS

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to