com.rubecula.util
Interface LookupableFactoryInterface

All Superinterfaces:
Identifiable
All Known Implementing Classes:
Constants

public interface LookupableFactoryInterface
extends Identifiable

Interface for the creation of Lookupable objects

Since:
V_0_5
Version:
$Revision: 1.1 $
Author:
Robin Hillyard

Method Summary
 Lookupable createLookupable()
          Method to create a fixed Lookupable instance, useful for constants, etc.
 Lookupable createLookupable(java.lang.String filename)
          /** Method to create a Lookupable instance which is based on a file, useful for application-specific values.
 
Methods inherited from interface com.rubecula.util.Identifiable
getIdentifier
 

Method Detail

createLookupable

public Lookupable createLookupable()
Method to create a fixed Lookupable instance, useful for constants, etc.

Returns:
a Lookupable object.

createLookupable

public Lookupable createLookupable(java.lang.String filename)
                            throws java.io.FileNotFoundException
/** Method to create a Lookupable instance which is based on a file, useful for application-specific values.

Parameters:
filename -
Returns:
a Lookupable object.
Throws:
java.io.FileNotFoundException - if filename cannot be found.