Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public static abstract class LocationResult{
  2. public abstract void gotLocation(Location location);
  3. }
  4.  
  5. public class EnclosingClass {
  6. public static abstract class LocationResult{
  7. public abstract void gotLocation(Location location);
  8. }
  9. }
  10.  
  11. EnclosingClass.LocationResult locationResult = ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement