isMultiple

Determines whether Business Object Wizard provides a means to enter multiple values for an agent property.

Type

public boolean isMultiple;
 

Notes

The isMultiple member variable is a boolean value that determines whether Business Object Wizard should provide a mechanism for allowing user entry of multiple values for an agent property:

Note:
For more information, see Choosing the type of display control.

To initialize an agent property with a list of multiple values for the user to choose from, the following call to the third form of the AgentProperty() constructor specifies a boolean value of true as the fourth argument (the value of the isMultiple variable):

AgentProperty agt = new AgentProperty("Username",
          AgentProperty.TYPE_STRING,
          "User Id for logging into the database", true, true,
          ODKConstant.SINGLE_CARD, null, null);
 
Note:
You can also specify a value for isMultiple with the second form of the AgentProperty() constructor, using its seventh argument.

Copyright IBM Corp. 1997, 2004