Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Created November 26, 2013 05:10
Show Gist options
  • Save goyuninfo/7653760 to your computer and use it in GitHub Desktop.
Save goyuninfo/7653760 to your computer and use it in GitHub Desktop.
package ca.i88.sample.pattern.observer.ee;
/**
*
* @author it.i88.ca
*/
class I88caEvent {
private String msg;
public String getMsg() {
return msg;
}
public I88caEvent(String msg) {
this.msg = msg;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment