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
7 months agoMarya
7 months agoRosalind
7 months agoJaime
8 months agoJennifer
8 months agoCiara
8 months agoJohnna
8 months agoAntonio
8 months agoMaryanne
8 months agoWalker
8 months agoGlory
8 months ago