1 This module provides the source code for the Scripting Framework.
3 For more information on the Scripting Framework, see the project web page:
4 [http://framework.openoffice.org/scripting/]
6 This module uses astyle to keep consistent java coding style. Please run
12 == Source Code Structure ==
14 The following directories contain the source code currently used
15 by the Scripting Framework:
19 C++ source for the implementations of the com.sun.star.script.provider.*
20 and com.sun.star.script.browse.* UNO types. These types are used for
21 browsing and executing scripts.
23 - source/protocolhandler
25 C++ for a ProtocolHandler implementation that handles vnd.sun.star.script
26 URIs and dispatches them for execution to the Scripting Framework.
30 C++ implementation of the LanguageScriptProvider UNO service for Basic
34 C++ implementation of the DialogProvider UNO service used for loading
35 UNO dialogs from various languages
37 - java/com/sun/star/script/framework/provider
39 Implementation of an abstract base class ScriptProvider which provides
40 core methods for implementing Java based LanguageScriptProvider implementations
42 - java/com/sun/star/script/framework/provider/*
44 BeanShell, JavaScript and Java LanguageScriptProvider implementations
46 - java/com/sun/star/script/framework/browse/*
48 BrowseNode implementations for the Java based LanguageScriptProviders
50 - java/com/sun/star/script/framework/io
51 - java/com/sun/star/script/framework/container
53 Classes for performing script IO
57 Example scripts in BeanShell, JavaScript, Java and Python
62 - java/org/openoffice/*
64 Support for developing scripts in IDEs such as NetBeans.
68 LanguageScriptProvider for Python