Last active
July 8, 2016 09:02
-
-
Save xgeek-net/76d563561d3eaea7b422 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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