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
global class RemoteController { | |
@RemoteAction | |
global static String test0Str(){ | |
return '0 arguments'; | |
} | |
@RemoteAction | |
global static String test1Str(String str){ | |
return str; |
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 with sharing class JSONTest { | |
public class noGetter { | |
string a = 'a'; | |
} | |
public class withGetter { | |
string a { get{ return 'a'; }} | |
} |