Created
February 2, 2013 16:24
-
-
Save afawcett/4698106 to your computer and use it in GitHub Desktop.
Sample code used to test a prototype Apex Analysis tool using the new Spring'13 Tooling API.
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 class SomeClassA | |
{ | |
public static void someMethod() | |
{ | |
SomeClassB.someMethodB(); | |
someOtherMethod(); | |
} | |
public static void someOtherMethod() | |
{ | |
} | |
} |
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 class SomeClassB | |
{ | |
public static void someMethodB() | |
{ | |
} | |
} |
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 class SomeClassC | |
{ | |
public void myMethod() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment