Class ControlInfo

java.lang.Object
com.portal.search.ControlInfo
All Implemented Interfaces:
Serializable

public class ControlInfo extends Object implements Serializable
This object is used to translate template fields into UI controls for the SearchPanel. It is used to determine the UI control as well as store any values that are entered in for that particular field.
Version:
%version: 1 % %date_modified: Wed Oct 11 15:39:13 2000 %
Author:
mgaines
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    Indicates the default value to be used for this field.
    int
    Indicates the the number assigned to the "F" value of this field.
    Indicates the list of operations.
    Indicates the list of possible values for a field, used as radio buttons in the UI, and their corresponding enum value.
    String representation of the field name for this control.
    int
    Indicates the field type for this control.
    Indicates the label to use in the UI for describing the field.
    boolean
    Indicates that the field is Canon field
    Indicates the label to use in the UI for the control used to enter in the field value.
    Indicates the format to be used when masking a value
    Indicates the label to use for the operation list.
    Indicates the value entered for this field.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • label

      public String label
      Indicates the label to use in the UI for the control used to enter in the field value.
    • fLabel

      public String fLabel
      Indicates the label to use in the UI for describing the field.
    • fieldName

      public String fieldName
      String representation of the field name for this control.
    • fieldType

      public int fieldType
      Indicates the field type for this control.
    • element

      public int element
      Indicates the the number assigned to the "F" value of this field.
    • mask

      public String mask
      Indicates the format to be used when masking a value
    • enumVal

      public String enumVal
      Indicates the list of possible values for a field, used as radio buttons in the UI, and their corresponding enum value.
    • enumop

      public String enumop
      Indicates the list of operations.
    • op

      public String op
      Indicates the label to use for the operation list.
    • value

      public String value
      Indicates the value entered for this field.
    • defVal

      public String defVal
      Indicates the default value to be used for this field.
    • isCanon

      public boolean isCanon
      Indicates that the field is Canon field
  • Constructor Details

    • ControlInfo

      public ControlInfo()