Skip to content

Instantly share code, notes, and snippets.

@xgeek-net
Last active July 8, 2016 09:02
Show Gist options
  • Save xgeek-net/76d563561d3eaea7b422 to your computer and use it in GitHub Desktop.
Save xgeek-net/76d563561d3eaea7b422 to your computer and use it in GitHub Desktop.
public class OrderController{
public String prop1{
get{
System.debug('--> prop1 getter');
return prop1;
}
set;
}
public OrderController(){
System.debug('--> OrderController constructor');
}
public void init(){
System.debug('--> Action mainInit()');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment