Created
December 6, 2016 16:38
-
-
Save sankaran1984/59b5e3ffb6549ab623349821bbc69e33 to your computer and use it in GitHub Desktop.
Visualforce - Beyond Basics
This file contains 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 testcls4_06122016 { | |
public Integer userRetries{get;set;} | |
public testcls4_06122016() { | |
userRetries = 0; | |
} | |
/* Action Methods */ | |
public void timerFired() { | |
userRetries++; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment