Class StepProperty

java.lang.Object
com.genologics.ri.stepconfiguration.LockableSetting
com.genologics.ri.stepconfiguration.StepProperty
All Implemented Interfaces:
Serializable

public class StepProperty extends LockableSetting
Step-property is a child element of protocol step containing key/value pairs for setting specific attributes of protocol steps. This information contains internally used properties that will change. These properties are suitable for use when copying protocol steps, but should not be manipulated.
See Also:
  • Field Details

    • name

      protected String name
      The name of the step property.
    • value

      protected String value
      The value of the step property.
  • Constructor Details

    • StepProperty

      public StepProperty()
      Default constructor.
    • StepProperty

      public StepProperty(String name)
      Constructor with property name.
      Parameters:
      name - The property name.
    • StepProperty

      public StepProperty(String name, String value)
      Constructor with property name and value.
      Parameters:
      name - The property name.
      value - The property value.
  • Method Details

    • getName

      public String getName()
      Gets the name of the step property.
      Returns:
      The property name.
    • setName

      public void setName(String name)
      Sets the name of the step property.
      Parameters:
      name - The property name.
    • getValue

      public String getValue()
      Gets the value of the step property.
      Returns:
      The property value.
    • setValue

      public void setValue(String value)
      Sets the value of the step property.
      Parameters:
      value - The property value.