The library-property Element"

From Documentation
m
Line 1: Line 1:
 
{{ZKConfigurationReferencePageHeader}}
 
{{ZKConfigurationReferencePageHeader}}
  
<source lang="xml" >
+
'''Syntax:'''
 
  <library-property>
 
  <library-property>
 
     <name>any name</name>
 
     <name>any name</name>
 
     <value>any value</value>
 
     <value>any value</value>
 
  </library-property>
 
  </library-property>
  </source>
 
  
 
Species a library-level property with the <tt>library-property</tt> element. The above example is equivalent to
 
Species a library-level property with the <tt>library-property</tt> element. The above example is equivalent to
  
org.zkoss.lang.Library.setProperty("any name", "any value");
+
<source lang="java">
 +
org.zkoss.lang.Library.setProperty("any name", "any value");
 +
</source>
  
 
The library properties are shared by all Java codes that use the same set of ZK libraries. If you installed ZK libraries in WEB-INF/ib of a ZK application, the library properties are shared only within the application.
 
The library properties are shared by all Java codes that use the same set of ZK libraries. If you installed ZK libraries in WEB-INF/ib of a ZK application, the library properties are shared only within the application.
Line 16: Line 17:
 
The library properties are easier to access than the preferences since they are static members (of <javadoc>org.zkoss.lang.Library</javadoc>). However, their scope depends on the installation.
 
The library properties are easier to access than the preferences since they are static members (of <javadoc>org.zkoss.lang.Library</javadoc>). However, their scope depends on the installation.
  
For a list of supported library properties, please take a look at [[ZK_Configuration_Reference/zk.xml/The_library-property_Element/Library_Properties | Library Properties]].
+
For a list of supported library properties, please take a look at [[ZK Configuration Reference/zk.xml/The Library Properties | Library Properties]].
  
 
==Version History==
 
==Version History==

Revision as of 02:27, 7 December 2010


The library-property Element


Syntax:

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

Species a library-level property with the library-property element. The above example is equivalent to

org.zkoss.lang.Library.setProperty("any name", "any value");

The library properties are shared by all Java codes that use the same set of ZK libraries. If you installed ZK libraries in WEB-INF/ib of a ZK application, the library properties are shared only within the application.

The library properties are easier to access than the preferences since they are static members (of Library). However, their scope depends on the installation.

For a list of supported library properties, please take a look at Library Properties.

Version History

Version Date Content
     



Last Update : 2010/12/07

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