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