Class AddressProxy


  • public class AddressProxy
    extends ProxyObj<Address>
    Stores information about a address in a program such that the address can be retrieved when needed.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Address getObject()
      Returns the object that this proxy represents or null if the represented object no longer exists.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AddressProxy

        public AddressProxy​(ListingModel model,
                            Address addr)
        Construct a address proxy
        Parameters:
        addr - the address to proxy
    • Method Detail

      • getObject

        public Address getObject()
        Description copied from class: ProxyObj
        Returns the object that this proxy represents or null if the represented object no longer exists.
        Specified by:
        getObject in class ProxyObj<Address>
        Returns:
        the object that this proxy represents or null if the represented object no longer exists.
        See Also:
        ProxyObj.getObject()