Guest User

Untitled

a guest
Oct 1st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. global class SomeClass {
  2.  
  3. global interface someInterface() {
  4.  
  5. //various methods returning and accepting standard Apex objects only
  6. String someMethod(String someParameter);
  7. }
  8.  
  9. }
  10.  
  11. global interface MyInterface1 {//methods}
  12.  
  13. global interface myInterface2 {
  14. MyInterface1 getInstanceOfI1();
  15. }
  16.  
  17. Type.forName(namespace, classname);
Add Comment
Please, Sign In to add comment