``` public abstract class User { String userName;...
# announcements
l
Copy code
public 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?