Interface Linkable


public interface Linkable
Interface implemented by components that have references that need to be eagerly resolved. The method on this interface should only be invoked by the runtime and not directly by external code.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Resolve any references.
    static void
    link(Object object)
    Link specified object if it is linkable.
  • Method Details

    • link

      void link()
      Resolve any references.
    • link

      static void link(@Nonnull Object object)
      Link specified object if it is linkable.
      Parameters:
      object - the object to link if linkable.