summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:21:41 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:21:41 +0200
commit1b12b332a9ff0c44b19f7f4f0c76b3f8ee534fc7 (patch)
treef951731fcd4f0c17dd7a55b154be238cb2b71bae /qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java
parent42e0579442c805df41454461d17cdede43c47b6a (diff)
recreated tag libreoffice-3.3.3.1 which had these commits:
commit aec86c5680a68c65de8537b8a83a16e8d90cfdd9 (tag: refs/tags/libreoffice-3.3.3.1) Author: Petr Mladek <pmladek@suse.cz> Date: Tue May 31 17:39:08 2011 +0200 Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1)
Notes
Notes: split repo tag: testing_libreoffice-3.3.3.1 split repo tag: testing_libreoffice-3.3.4.1
Diffstat (limited to 'qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java')
-rw-r--r--qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java b/qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java
index f50a7d2eb470..257120aca299 100644
--- a/qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java
+++ b/qadevOOo/runner/basicrunner/basichelper/DispatchProviderInterceptor.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -41,23 +41,23 @@ import com.sun.star.util.URL;
* @see com.sun.star.lang.XSingleServiceFactory
* @see com.sun.star.lang.XServiceInfo
*/
-public class DispatchProviderInterceptor implements XServiceInfo,
+public class DispatchProviderInterceptor implements XServiceInfo,
XSingleServiceFactory {
- /** The service name **/
- static final String __serviceName =
+ /** The service name **/
+ static final String __serviceName =
"basichelper.DispatchProviderInterceptor";
- /** Create an instance of the interceptor
+ /** Create an instance of the interceptor
* Arguments are not supported here, so they will be ignored.
* @param args The arguments.
- * @return A new instance of the interceptor.
+ * @return A new instance of the interceptor.
**/
public Object createInstanceWithArguments(Object[] args) {
return new InterceptorImpl();
}
- /** Create an instance of the interceptor
- * @return A new instance of the interceptor.
+ /** Create an instance of the interceptor
+ * @return A new instance of the interceptor.
**/
public Object createInstance() {
return createInstanceWithArguments(null);
@@ -111,13 +111,13 @@ public class DispatchProviderInterceptor implements XServiceInfo,
/**
* The actual implementation of the interceptor.
- * @see com.sun.star.lang.XTypeProvider
+ * @see com.sun.star.lang.XTypeProvider
* @see com.sun.star.frame.XDispatchProviderInterceptor
* @see com.sun.star.frame.XDispatchProvider
*/
-class InterceptorImpl implements XDispatchProvider,
+class InterceptorImpl implements XDispatchProvider,
XDispatchProviderInterceptor, XTypeProvider {
-
+
/** A master dispatch provider **/
public XDispatchProvider master = null;
/** A slave dispatch provider **/
@@ -162,7 +162,7 @@ class InterceptorImpl implements XDispatchProvider,
public XDispatch queryDispatch(URL url, String frame, int flags) {
return master.queryDispatch(url, frame, flags) ;
}
-
+
/**
* Query for an array of <type>XDispatch</type>.
* @param desc A list of dipatch requests.