org.biomage.Interface
Interface HasParameterValues

All Known Implementing Classes:
HardwareApplication, ParameterizableApplication, ProtocolApplication, SoftwareApplication

public interface HasParameterValues


Nested Class Summary
static class HasParameterValues.ParameterValues_list
          Inner list class for holding multiple entries for attribute parameterValues.
 
Method Summary
 void addToParameterValues(int position, ParameterValue parameterValue)
          Method to add ParameterValue at position to ParameterValues_list
 void addToParameterValues(ParameterValue parameterValue)
          Method to add ParameterValue to ParameterValues_list
 ParameterValue getFromParameterValues(int position)
          Method to get ParameterValue from ParameterValues_list
 HasParameterValues.ParameterValues_list getParameterValues()
          Get method for parameterValues
 void removeElementAtFromParameterValues(int position)
          Method to remove by position from ParameterValues_list
 void removeFromParameterValues(ParameterValue parameterValue)
          Method to remove first ParameterValue from ParameterValues_list
 void setParameterValues(HasParameterValues.ParameterValues_list parameterValues)
          Set method for parameterValues
 

Method Detail

setParameterValues

void setParameterValues(HasParameterValues.ParameterValues_list parameterValues)
Set method for parameterValues

Parameters:
value - to set

getParameterValues

HasParameterValues.ParameterValues_list getParameterValues()
Get method for parameterValues

Returns:
value of the attribute

addToParameterValues

void addToParameterValues(ParameterValue parameterValue)
Method to add ParameterValue to ParameterValues_list


addToParameterValues

void addToParameterValues(int position,
                          ParameterValue parameterValue)
Method to add ParameterValue at position to ParameterValues_list


getFromParameterValues

ParameterValue getFromParameterValues(int position)
Method to get ParameterValue from ParameterValues_list


removeElementAtFromParameterValues

void removeElementAtFromParameterValues(int position)
Method to remove by position from ParameterValues_list


removeFromParameterValues

void removeFromParameterValues(ParameterValue parameterValue)
Method to remove first ParameterValue from ParameterValues_list