| This component can be used to set
SystemProperties values
and initialize the properties map.
For an example, see
NodeApplet 's "createProperties()" method.
Each parameter must be one of:
- A Properties object
- A Map of String names to String values
- A Collection of String name=value pairs
- A single String name=value pair
Four special properties are filtered out and processed before all
others, and in the following order:
- "override_props": If true, call
SystemProperties.overrideProperties with an
empty Properties table.
- "put_system_props": If true, copy all System properties
into the SystemProperties table.
- "put_applet_props": If true, copy all System properties
that Applets are allowed to access into the SystemProperties
table.
- "finalize_props": If true, call
SystemProperties.finalizeProperties .
Property values that specify "$" variables are expanded in place, using the
SystemProperties "resolveEnv" and "expandProperties" methods.
|