import"

From Documentation
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{ZUMLReferencePageHeader}}
 
{{ZUMLReferencePageHeader}}
  
 +
<!-- implemented in org.zkoss.zk.ui.metainfo.Parser -->
  
 
=Import Classes=
 
=Import Classes=
'''Syntax to Import Classes'''
+
'''Syntax'''
<?import ''class-name1'' ''class-name2'' ?>
+
<syntaxhighlight lang='xml'>
 +
<?import ''class-name1'' ''class-name2'' ?>
 +
</syntaxhighlight>
  
[6.0.0]
+
{{versionSince| 6.0.0}}
  
 
It imports a class or a package of classes. It works like Java's import statement. For example,
 
It imports a class or a package of classes. It works like Java's import statement. For example,
Line 19: Line 22:
 
</source>
 
</source>
  
[Since 8.0.0]
+
{{versionSince| 8.0.0}}
 +
 
 
After import, we can invoke the static method or field defined in imported class with el statement. For example,
 
After import, we can invoke the static method or field defined in imported class with el statement. For example,
  
Line 25: Line 29:
 
<?import com.foo.FooClass ?>
 
<?import com.foo.FooClass ?>
 
<!-- or we can import com.foo.* -->
 
<!-- or we can import com.foo.* -->
<label value="@load(FooClass.staticMethod())"></label>
+
<label value="${FooClass.staticMethod()}"></label>
<label value="@load(FooClass.staticField)"></label>
+
<label value="${FooClass.staticField}"></label>
 
</source>
 
</source>
  
 
= Import Directives=
 
= Import Directives=
 
'''Syntax to Import Directives'''
 
'''Syntax to Import Directives'''
  <?import uri="..."?>
+
<syntaxhighlight lang='xml'>
  <?import uri="..." directives="..."?>
+
  <?import src="..."?>
 +
  <?import src="..." directives="..."?>
 +
</syntaxhighlight>
  
It imports the directives, such as component definitions (<tt><?component?></tt>) and initiators (<tt><?init?></tt>), defined in another ZUML page.
+
It imports the directives, such as component definitions (<code><?component?></code>) and initiators (<code><?init?></code>), defined in another ZUML page.
  
A typical use is that you put a set of component definitions in one ZUML page, and then import it in other ZUML pages, such that they share the same set of component definitions, additional to the system default.
+
A typical usage is that you put a set of component definitions on one ZUML page, and then import them into another ZUML page, such that both zul pages share the same set of component definitions, additional to the system default.
  
 
<source lang="xml" >
 
<source lang="xml" >
Line 45: Line 51:
 
</source>
 
</source>
 
   
 
   
where the <tt>Special</tt> class is assumed to be defined in <tt>/WEB-INF/macros/special.zs</tt>.
+
Where the <code>Special</code> class is assumed to be defined in <code>/WEB-INF/macros/special.zs</code>.
  
 
Then, other ZUML pages can share the same set of component definitions as follows.
 
Then, other ZUML pages can share the same set of component definitions as follows.
  
 
<source lang="xml" >
 
<source lang="xml" >
  <?import uri="special.zul"?>
+
  <?import src="special.zul"?>
 
  ...
 
  ...
 
  <special/><!-- you can use the component defined in special.zul -->
 
  <special/><!-- you can use the component defined in special.zul -->
Line 57: Line 63:
 
Notes
 
Notes
  
* Unlike other directives, the import directives must be at the topmost level, i.e., at the the same level as the root element.
+
* Unlike other directives, the import directives must be at the topmost level, i.e., at the same level as the root element.
 
* The imported directives in the imported page are also imported. For example, if A imports B and B imports C, then A imports both C and B component definitions. If there is a name conflict, A overrides B, while B overrides C.
 
* The imported directives in the imported page are also imported. For example, if A imports B and B imports C, then A imports both C and B component definitions. If there is a name conflict, A overrides B, while B overrides C.
* Once the directives are imported, they won't be changed until the importing page is change, no matter the imported page is changed or not.
+
* Once the directives are imported, they won't be changed until the importing page is changed, no matter the imported page is changed or not.
  
== class ==
+
= class =
 
  [Required if importing a class]
 
  [Required if importing a class]
  
The name of a class, or a wildcard, such as <tt>com.foo.app.*</tt>.
+
The name of a class, or a wildcard, such as <code>com.foo.app.*</code>.
  
== uri ==
+
= src =
 
  [Required if importing directives]
 
  [Required if importing directives]
  
 
The URI of a ZUML page which the component definitions will be imported from.
 
The URI of a ZUML page which the component definitions will be imported from.
  
== directives ==
+
= directives =
 
  [Optional]
 
  [Optional]
 +
default: component, init, import
 +
 +
If the <code>directives</code> attribute is omitted, only the <code>component</code>, <code>init</code> and <code>import</code> (with class) directives are imported.
  
If the <tt>directives</tt> attribute is omitted, only the <tt>component</tt>, <tt>init</tt> and <tt>import</tt> (with class) directives are imported. If you want to import particular directives, you can specify a list of the names of the directives separated by comma. For example,
+
== Import specific directives==
 +
Specify a list of directive names separated by comma. For example,
  
 
<source lang="xml" >
 
<source lang="xml" >
  <?import uri="/template/taglibs.zul" directives="taglib, xel-method"?>
+
  <?import src="/template/taglibs.zul" directives="taglib, xel-method"?>
  <?import uri="/template/java.zul" directives="import"?><!-- only <?import class="..."?> -->
+
  <?import src="/template/java.zul" directives="import"?><!-- only <?import class="..."?> -->
 
</source>
 
</source>
  
The directives that can be imported include <tt>component</tt>, <tt>init</tt>, <tt>meta</tt>, <tt>taglib</tt>, <tt>variable-resolver</tt>, and <tt>xel-method</tt>. If you want to import them all, specify * to the <tt>directives</tt> attribute. Notice that <tt>meta</tt> implies both the <tt>meta</tt>, <tt>link</tt> and <tt>script</tt> directives.
+
== Available values==
 +
The directives that can be imported include  
 +
* <code>component</code>
 +
* <code>header</code>
 +
* <code>function-mapper</code>
 +
* <code>import</code>
 +
* <code>init</code>
 +
* <code>meta</code>: include <code>meta</code>, <code>link</code> and <code>script</code> directives
 +
* <code>taglib</code>
 +
* <code>variable-resolver</code>
 +
* <code>xel-method</code>
 +
* <code>*</code>: import all above
  
 
=Version History=
 
=Version History=

Latest revision as of 03:44, 10 May 2022


Import Classes

Syntax

<?import ''class-name1'' ''class-name2'' ?>

Since 6.0.0

It imports a class or a package of classes. It works like Java's import statement. For example,

<?import com.foo.composer.FooComposer?>
<?import com.foo.init.*?>

<?init class="FooInit"?><!-- it will look for com.foo.init.FooInit  -->
<window apply="FooComposer"><!-- com.foo.composer.FooComposer will be used -->
...

Since 8.0.0

After import, we can invoke the static method or field defined in imported class with el statement. For example,

<?import com.foo.FooClass ?>
<!-- or we can import com.foo.* -->
<label value="${FooClass.staticMethod()}"></label>
<label value="${FooClass.staticField}"></label>

Import Directives

Syntax to Import Directives

 <?import src="..."?>
 <?import src="..." directives="..."?>

It imports the directives, such as component definitions (<?component?>) and initiators (<?init?>), defined in another ZUML page.

A typical usage is that you put a set of component definitions on one ZUML page, and then import them into another ZUML page, such that both zul pages share the same set of component definitions, additional to the system default.

 <!-- special.zul: Common Definitions -->
 <?init zscript="/WEB-INF/macros/special.zs"?>
 <?component name="special" macroURI="/WEB-INF/macros/special.zuml" class="Special"?>
 <?component name="another" macroURI="/WEB-INF/macros/another.zuml"?>

Where the Special class is assumed to be defined in /WEB-INF/macros/special.zs.

Then, other ZUML pages can share the same set of component definitions as follows.

 <?import src="special.zul"?>
 ...
 <special/><!-- you can use the component defined in special.zul -->

Notes

  • Unlike other directives, the import directives must be at the topmost level, i.e., at the same level as the root element.
  • The imported directives in the imported page are also imported. For example, if A imports B and B imports C, then A imports both C and B component definitions. If there is a name conflict, A overrides B, while B overrides C.
  • Once the directives are imported, they won't be changed until the importing page is changed, no matter the imported page is changed or not.

class

[Required if importing a class]

The name of a class, or a wildcard, such as com.foo.app.*.

src

[Required if importing directives]

The URI of a ZUML page which the component definitions will be imported from.

directives

[Optional]
default: component, init, import

If the directives attribute is omitted, only the component, init and import (with class) directives are imported.

Import specific directives

Specify a list of directive names separated by comma. For example,

 <?import src="/template/taglibs.zul" directives="taglib, xel-method"?>
 <?import src="/template/java.zul" directives="import"?><!-- only <?import class="..."?> -->

Available values

The directives that can be imported include

  • component
  • header
  • function-mapper
  • import
  • init
  • meta: include meta, link and script directives
  • taglib
  • variable-resolver
  • xel-method
  • *: import all above

Version History

Version Date Content
6.0.0 July, 2011 The import of classes was introduced.



Last Update : 2022/05/10

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