lynnz
06/10/2016, 3:35 PMpublic abstract class User {
String userName;
Location getUserLocation(return location);
}
public class Operator extends User {
String operatorType;
// more properties
}
I want to write a function extension for the Operator object that returns the Location object in the User class
is this possible at this time?