The system-property Element"

From Documentation
m (correct highlight (via JWB))
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{ZKConfigurationReferencePageHeader}}
  
  
 
<source lang="xml" >
 
<source lang="xml" >
 
<system-property>
 
<system-property>
<name>''any name''</name>
+
<name>any name</name>
<value>''any value''</value>
+
<value>any value</value>
 
</system-property>
 
</system-property>
 
</source>
 
</source>
  
Specifies a system properties with the <tt>system-property</tt> element. The above example is equivalent to
+
Specifies a system properties with the <code>system-property</code> element. The above example is equivalent to
  
 
<source lang="java" >
 
<source lang="java" >
 
  System.setProperty("any name", "any value");
 
  System.setProperty("any name", "any value");
 
</source>
 
</source>
 +
 +
==Version History==
 +
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| &nbsp;
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 +
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 10:34, 19 January 2022


The system-property Element



<system-property>
	<name>any name</name>
	<value>any value</value>
</system-property>

Specifies a system properties with the system-property element. The above example is equivalent to

 System.setProperty("any name", "any value");

Version History

Version Date Content
     



Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.