A developer creates a custom controller and a custom Visualforce page by using the code block below:
public class MyController {
public String myString {
get {
if (myString == null) { myString = 'a';
}
return myString;
} private set; } public string getMyString (){
return 'getMyString';
} public string getStringMethod () {
if (myString == null) {
myString = 'b';
} return myString;
}
}
What can the user expect to see when accessing the custom page?
Carin
10 months agoMarya
10 months agoRosalind
10 months agoJaime
11 months agoJennifer
11 months agoCiara
11 months agoJohnna
11 months agoAntonio
11 months agoMaryanne
11 months agoWalker
11 months agoGlory
11 months ago