Interface IProxyProp

  • All Known Implementing Classes:
    ProxyPropCnr

    public interface IProxyProp
    The Interface used by Proxy Properties.
    Author:
    Christopher Mindus
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      <T> TgetProxiedInterface​(java.lang.Class<T> interfaze)
      Checks if the proxied property is instance of an interface.
      java.lang.Class<?>getProxyClass()
      Gets the "real" class name to use when sending the property over a transaction.
    • Method Detail

      • getProxyClass

        java.lang.Class<?> getProxyClass()
        Gets the "real" class name to use when sending the property over a transaction.
        Returns:
        The class name of the proxied class.
      • getProxiedInterface

        <T> T getProxiedInterface​(java.lang.Class<T> interfaze)
        Checks if the proxied property is instance of an interface.
        Parameters:
        interfaze - The interface.
        Returns:
        The proxy instance interface, or null if it is not implemented.