diff options
Diffstat (limited to 'scripting/java')
4 files changed, 9 insertions, 9 deletions
diff --git a/scripting/java/com/sun/star/script/framework/container/Parcel.java b/scripting/java/com/sun/star/script/framework/container/Parcel.java index 4fbc1623b27d..026d1df834e5 100644 --- a/scripting/java/com/sun/star/script/framework/container/Parcel.java +++ b/scripting/java/com/sun/star/script/framework/container/Parcel.java @@ -134,7 +134,7 @@ public class Parcel implements XNameContainer // TODO at the moment this returns void indicating // type is unknown ( from UNO point of view this is correct ) // but, maybe we want to have a private UNO interface - // + return new Type(); } diff --git a/scripting/java/com/sun/star/script/framework/provider/ScriptContext.java b/scripting/java/com/sun/star/script/framework/provider/ScriptContext.java index f7f3c8ab2c2e..3684e0a301f0 100644 --- a/scripting/java/com/sun/star/script/framework/provider/ScriptContext.java +++ b/scripting/java/com/sun/star/script/framework/provider/ScriptContext.java @@ -99,7 +99,7 @@ public class ScriptContext extends PropertySet implements XScriptContext return sc; } - //---------------------------------------------------------------------- + /** Obtain the document reference on which the script can operate diff --git a/scripting/java/com/sun/star/script/framework/provider/javascript/template.js b/scripting/java/com/sun/star/script/framework/provider/javascript/template.js index c43ef968bc9c..51a700b0d242 100755 --- a/scripting/java/com/sun/star/script/framework/provider/javascript/template.js +++ b/scripting/java/com/sun/star/script/framework/provider/javascript/template.js @@ -31,19 +31,19 @@ importClass(Packages.com.sun.star.frame.XModel); // to all JavaScript scripts in the global variable "XSCRIPTCONTEXT". This // variable can be used to access the document for which this script // was invoked. -// -// Methods available are: -// + +// Methods available are: + // XSCRIPTCONTEXT.getDocument() returns XModel // XSCRIPTCONTEXT.getInvocationContext() returns XScriptInvocationContext or NULL // XSCRIPTCONTEXT.getDesktop() returns XDesktop // XSCRIPTCONTEXT.getComponentContext() returns XComponentContext -// + // For more information on using this class see the scripting // developer guides at: -// + // http://api.libreoffice.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml -// + oDoc = UnoRuntime.queryInterface(XModel,XSCRIPTCONTEXT.getInvocationContext()); if ( !oDoc ) diff --git a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java index e41625d18245..e5734c4b53bd 100644 --- a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java +++ b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java @@ -31,7 +31,7 @@ import org.openide.util.NbBundle; // ISSUES: // - This FS saves (updates) the file on 'setDocument' or 'removeNotify'. // It has to let the user to decide to update or not. -// + // TODOS: // - 'Update' action on the mounted document which saves all recent modifications. // - To introduce 'scope' editable property to control editable portion of |