[mud4j-commit] SF.net SVN: mud4j: [92] trunk/mud4j-core/src/java/net/sf/mud4j
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2007-01-07 21:02:11
|
Revision: 92 http://mud4j.svn.sourceforge.net/mud4j/?rev=92&view=rev Author: mpurland Date: 2007-01-07 13:02:06 -0800 (Sun, 07 Jan 2007) Log Message: ----------- Add scripting manager interface. Added Paths: ----------- trunk/mud4j-core/src/java/net/sf/mud4j/scripting/ trunk/mud4j-core/src/java/net/sf/mud4j/scripting/ScriptingManager.java Added: trunk/mud4j-core/src/java/net/sf/mud4j/scripting/ScriptingManager.java =================================================================== --- trunk/mud4j-core/src/java/net/sf/mud4j/scripting/ScriptingManager.java (rev 0) +++ trunk/mud4j-core/src/java/net/sf/mud4j/scripting/ScriptingManager.java 2007-01-07 21:02:06 UTC (rev 92) @@ -0,0 +1,31 @@ +/** + * Copyright 2006 Matthew Purland (m.p...@gm...) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.sf.mud4j.scripting; + +/** + * Provide interface for scripting managers that will allow different + * scripting engines to be loaded to load different scripts dynamically. + * + * This may include in the future for Groovy, Jython, Rhino, or Java scripting + * managers. When we say a Java scripting manager what is truly meant is for + * a class loader to dynamically compile and load a class dynamically for + * changed scripts. + * + * @author Matthew Purland + */ +public interface ScriptingManager { + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |