Skip to content

Instantly share code, notes, and snippets.

@rabitarochan
Created February 22, 2012 11:49
Show Gist options
  • Save rabitarochan/1884467 to your computer and use it in GitHub Desktop.
Save rabitarochan/1884467 to your computer and use it in GitHub Desktop.
SPI example #1
public interface IHello {
public String say();
}
public class JapaneseHello implements IHello {
public String say() {
reutrn "こんにちは";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment