2002-04-08 08:49:41 +00:00
|
|
|
#
|
|
|
|
# define the root class of this application
|
|
|
|
#
|
|
|
|
root = helma.main.Server
|
|
|
|
|
|
|
|
#
|
|
|
|
# root.factory is used to retrieve the root class of the application
|
|
|
|
# when the instance has already been created when the application comes up.
|
|
|
|
# this is true for the helma server that is scripted here.
|
|
|
|
#
|
|
|
|
root.factory.class = helma.main.Server
|
|
|
|
root.factory.method = getServer
|
|
|
|
|
2002-03-11 13:49:50 +00:00
|
|
|
#
|
|
|
|
# Map Java classes to the prototype used to script them
|
2002-04-08 08:49:41 +00:00
|
|
|
# and, yes, map the root class again.
|
2002-03-11 13:49:50 +00:00
|
|
|
#
|
|
|
|
|
2005-08-31 13:16:21 +00:00
|
|
|
helma.main.Server = Root
|
|
|
|
helma.framework.core.Application = Application
|
|
|
|
helma.doc.DocApplication = DocApplication
|
|
|
|
helma.doc.DocPrototype = DocPrototype
|
|
|
|
helma.doc.DocFunction = DocFunction
|
2006-11-20 11:05:24 +00:00
|
|
|
helma.doc.DocProperties = DocFunction
|
|
|
|
helma.doc.DocSkin = DocFunction
|
2005-08-31 13:16:21 +00:00
|
|
|
helma.doc.DocTag = DocTag
|
2002-03-11 13:49:50 +00:00
|
|
|
|