erland.util
Interface ParameterValueStorageExInterface

All Superinterfaces:
ParameterValueStorageInterface
All Known Implementing Classes:
ParameterStorageChild, ParameterStorageGroup, ParameterStorageGroupWithId, ParameterStorageParameterString, ParameterStorageString, ParameterStorageStringEx, ParameterStorageTree

public interface ParameterValueStorageExInterface
extends ParameterValueStorageInterface

Get, set or delete parameters from some storage. This interface adds the functionality to get a parameter value as a StorageInterface object to the ParameterValueStorageInterface interface

Author:
Erland Isaksson

Method Summary
 StorageInterface getParameterAsStorage(String name)
          Retreives the parameter as a StorageInterface object instead of a value Observe that this is a new StorageInterface object and will not be related to any of your other StorageInterface objects
 void setParameterAsStorage(String name, StorageInterface value)
          Sets the parameter as a StorageInterface object instead of a value Observe that this is a new StorageInterface object must have been retreived with the getParameterAsStorage(String) method
 
Methods inherited from interface erland.util.ParameterValueStorageInterface
delParameter, getParameter, setParameter
 

Method Detail

getParameterAsStorage

StorageInterface getParameterAsStorage(String name)
Retreives the parameter as a StorageInterface object instead of a value Observe that this is a new StorageInterface object and will not be related to any of your other StorageInterface objects

Parameters:
name - The name of the parameter to retreive
Returns:
A StorageInterface object containing the value of the parameter

setParameterAsStorage

void setParameterAsStorage(String name,
                           StorageInterface value)
Sets the parameter as a StorageInterface object instead of a value Observe that this is a new StorageInterface object must have been retreived with the getParameterAsStorage(String) method

Parameters:
name - The name of the parameter to set
value - The value as a StorageInterface object


Copyright © 2003-2005 Erland Isaksson. All Rights Reserved.