The String Node
The String node () declares one or more named strings that you can access from form objects and methods. You can use a string as a source in many of the form objects, such as input fields, combo boxes, and check boxes. The Settings window contains the following section:
List of Variables
This section contains a single table, where you specify one string stored per row. Specify the name in the Name column and the initial value for the string in the Initial value column. You can also add an optional description of the string in the Description column.
Use the Move Up (), Move Down (), and Delete () toolbar buttons to organize and remove choices from the list.
Code Access
In the code of a method, you access a string named string1 as if it were a normal Java String variable:
String s = string1;
string1 = "newValue";