15. property

<property
  name = non empty token
  url = boolean
  xml:space = preserve
>text</property>

Define Java™ system property (that is, java.lang.System.setProperty()) called name. The value of this property is specified by text.

If the url attribute is specified and its value is true, text must be a relative or absolute URL (properly escaped like all URLs). In such case, the value of the system property is the fully resolved URL.

This element is mainly intended to be used to configure some custom commands.

Examples:

<property name="color">red</property>

<property name="icon.3" url="true">resources/icon.gif</property>