Sorry, but there are no more tags available to filter with.
-
Here is my version of Hello World. I call this, Pluggable HelloWorld! :) Greeting.java, which all Classes must implement to be a plug-in. 1 2 3 4 5 6 package ph.devpinoy.helloworld; public interface Greeting { public String sayGreeting(); } HelloWorld.java 1 2 3 4 5 6 7 8 9 package ph.devpinoy.helloworld;...