How to Support More Scripting Languages"

From Documentation
Line 13: Line 13:
 
</source>
 
</source>
  
Refer to '''the Developer's Reference''' for the details about <tt>WEB-INF/zk.xml</tt>. Refer to '''the Component Development Guide''' for the details about <tt>zk/config.xml</tt>.
+
Refer to [ http://books.zkoss.org/wiki/ZK_Configuration_Reference '''the Developer's Reference'''] for the details about <tt>WEB-INF/zk.xml</tt>. Refer to '''the Component Development Guide''' for the details about <tt>zk/config.xml</tt>.
  
 
{{ ZKDevelopersGuidePageFooter}}
 
{{ ZKDevelopersGuidePageFooter}}

Revision as of 03:35, 27 July 2010

How to Support More Scripting Languages


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


Currently ZK supports Java, JavaScript, Ruby and Groovy. However, it is easy to extend:

  1. Provides a class that implements the Interpreter interface. Instead of implementing it directly, you can derive from the GenericInterpreter class, if you'd like to handle namespaces directly. Or, you can derive from the BSFInterpreter class, if the interpreter supports BSF (Bean Scripting Framework).
  2. Declares the scripting language in either WEB-INF/zk.xml, or zk/config.xml.
<zscript-config>
        <language-name>SuperJava</language-name><!-- case insensitive -->
        <interpreter-class>my.MySuperJavaInterpreter</interpreter-class>    
</zscript-config>

Refer to [ http://books.zkoss.org/wiki/ZK_Configuration_Reference the Developer's Reference] for the details about WEB-INF/zk.xml. Refer to the Component Development Guide for the details about zk/config.xml.



Last Update : 2010/07/27

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