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
 boolean isLoadable()
          Is the component currently loadable.
 void load()
          Load the component.
 void unload()
          Unload the component.
 

Method Detail

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.