Package org.oddjob

Interface Loadable

All Known Implementing Classes:
ForEachJob, Oddjob

public interface Loadable
An interface for components that can be loaded.
Author:
rob
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Is the component currently loadable.
    void
    Load the component.
    void
    Unload the component.
  • Method Details

    • load

      void load()
      Load the component.
    • unload

      void unload()
      Unload the component.
    • isLoadable

      boolean isLoadable()
      Is the component currently loadable.
      Returns:
      true if the component can be loaded, false otherwise.