Kaydet (Commit) 73207149 authored tarafından Noel Grandin's avatar Noel Grandin

java: fix non-public UNO implementation classes

which I messed up in commit 70f56bc2
"java: reduce scope, make member classes private"

Change-Id: I817b2a571e2124f551ccd5c0d8e1099d89f0ec46
üst 513108bd
......@@ -43,7 +43,7 @@ import com.sun.star.util.XChangesBatch;
*/
public class OptionsEventHandler {
private static class _OptionsEventHandler extends WeakBase
public static class _OptionsEventHandler extends WeakBase
implements XServiceInfo, XContainerWindowEventHandler {
static private final String __serviceName =
......
......@@ -65,7 +65,7 @@ import com.sun.star.test.XTestDialogHandler;
// ComponentBase, see implementation of TestComponentA.
public class DialogComponent {
private static class _DialogComponent
public static class _DialogComponent
implements XTypeProvider, XServiceInfo, XTestDialogHandler, XDialogEventHandler {
private static final String __serviceName= "com.sun.star.test.TestDialogHandler";
......
......@@ -67,7 +67,7 @@ import com.sun.star.document.XFilter;
public class AsciiReplaceFilter
{
private static class _AsciiReplaceFilter extends WeakBase
public static class _AsciiReplaceFilter extends WeakBase
implements XInitialization ,
XServiceInfo ,
XNamed ,
......
......@@ -108,7 +108,7 @@ class ExampleAddInThread extends Thread
public class ExampleAddIn
{
static private class _ExampleAddIn extends com.sun.star.lib.uno.helper.WeakBase
static public class _ExampleAddIn extends com.sun.star.lib.uno.helper.WeakBase
implements org.openoffice.sheet.addin.XExampleAddIn,
com.sun.star.sheet.XAddIn,
com.sun.star.lang.XServiceName,
......
......@@ -752,7 +752,7 @@ public class ExampleDataPilotSource
{
// implementation of com.sun.star.sheet.DataPilotSource
static private class _ExampleDataPilotSource implements
static public class _ExampleDataPilotSource implements
com.sun.star.sheet.XDimensionsSupplier,
com.sun.star.sheet.XDataPilotResults,
com.sun.star.util.XRefreshable,
......
......@@ -53,7 +53,7 @@ public class InspectorAddon {
/** This class implements the component. At least the interfaces XServiceInfo,
* XTypeProvider, and XInitialization should be provided by the service.
*/
private static class InspectorAddonImpl extends WeakBase implements XDispatchProvider, XInitialization, XServiceInfo {
public static class InspectorAddonImpl extends WeakBase implements XDispatchProvider, XInitialization, XServiceInfo {
private org.openoffice.XInstanceInspector xInstInspector = null;
// Dispatcher oDispatcher = null;
private XFrame m_xFrame = null;
......
......@@ -57,7 +57,7 @@ public class ProtocolHandlerAddon {
/** This class implements the component. At least the interfaces XServiceInfo,
* XTypeProvider, and XInitialization should be provided by the service.
*/
private static class ProtocolHandlerAddonImpl extends WeakBase implements
public static class ProtocolHandlerAddonImpl extends WeakBase implements
XDispatchProvider,
XDispatch,
XInitialization,
......
......@@ -49,7 +49,7 @@ public class MinimalComponent {
/** This class implements the component. At least the interfaces XServiceInfo,
* XTypeProvider, and XInitialization should be provided by the service.
*/
private static class _MinimalComponent extends WeakBase
public static class _MinimalComponent extends WeakBase
implements XInitialization, XServiceInfo {
/** The service name, that must be used to get an instance of this service.
*/
......
......@@ -75,7 +75,7 @@ public class ToDo {
* XInterface, XTypeProvider, and XWeak implemented by the helper class
* WeakBase and XServiceInfo should be provided by the service.
*/
private static class ToDoImpl extends WeakBase implements XServiceInfo, XToDo {
public static class ToDoImpl extends WeakBase implements XServiceInfo, XToDo {
/** The service name, that must be used to get an instance of this service.
*/
......
......@@ -82,7 +82,7 @@ public class XMergeBridge {
/** This inner class provides the component as a concrete implementation
* of the service description. It implements the needed interfaces.
*/
static private class _XMergeBridge implements
static public class _XMergeBridge implements
XImportFilter,
XExportFilter,
XServiceName,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment