|
Unlike compiler variables, installer variables do not have to be strings.
In order to support variable types that are commonly used by form components,
the installer variable edit dialog offers several value types:
- Undefined
If you just wish to document and categorize an installer variable, leave the type as
"Undefined". The variable value will be set at runtime when the variable is first bound or assigned to.
- String
An instance of java.lang.String - Integer
An instance of java.lang.Integer - Long
An instance of java.lang.Long - Boolean
An instance of java.lang.Boolean - String array
An instance of java.lang.String[] . Enter the array entries surrounded
by quotes and separated by commas. Use the backslash to quote quotes and backslashes.
- Int array
An instance of int[] . Enter the array entries surrounded
separated by commas.
|