Skip to content

Instantly share code, notes, and snippets.

@johncarl81
Created March 10, 2012 20:01
Show Gist options
  • Save johncarl81/2012787 to your computer and use it in GitHub Desktop.
Save johncarl81/2012787 to your computer and use it in GitHub Desktop.
event handling
@EventName
public void callMe(String value1, String value2, Object anothervalue){
//value1 == "hello"
//value2 == "world"
//anotherValue = something else
}
or
@EventName
public void callMe(String value1,Object anothervalue){
//value1 == "hello"
//anotherValue = something else
}
or
@EventName
public void callMe(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment