Class QueueField

All Implemented Interfaces:
Serializable

public class QueueField extends Field
A field has a name and an attach to value, these fields are used to keep track of all the UDF values for samples in queue and work view as well as those on the actual step
See Also:
  • Field Details

    • detail

      protected Boolean detail
      Indicates whether this queue field should be shown in detail view.
  • Constructor Details

    • QueueField

      public QueueField()
      Default constructor.
    • QueueField

      public QueueField(String name)
      Constructor with field name.
      Parameters:
      name - The field name.
    • QueueField

      public QueueField(String name, String attachTo)
      Constructor with field name and attach-to value.
      Parameters:
      name - The field name.
      attachTo - What entity this field is attached to.
    • QueueField

      public QueueField(String name, String attachTo, Boolean detail)
      Constructor with field name, attach-to value, and detail flag.
      Parameters:
      name - The field name.
      attachTo - What entity this field is attached to.
      detail - Whether to show in detail view.
  • Method Details

    • getDetail

      public Boolean getDetail()
      Gets whether this field should be shown in detail view.
      Returns:
      True if shown in detail view, false otherwise.
    • setDetail

      public void setDetail(Boolean detail)
      Sets whether this field should be shown in detail view.
      Parameters:
      detail - True to show in detail view, false otherwise.