summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/frame
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/frame')
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XDispatch.java4
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XDispatchProviderInterception.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XFrameLoader.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java2
5 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/tests/java/ifc/frame/_XDispatch.java b/qadevOOo/tests/java/ifc/frame/_XDispatch.java
index 2fd127036f7b..e059e347e7d0 100644
--- a/qadevOOo/tests/java/ifc/frame/_XDispatch.java
+++ b/qadevOOo/tests/java/ifc/frame/_XDispatch.java
@@ -55,7 +55,7 @@ public class _XDispatch extends MultiMethodTest {
/**
* Listener implementation which sets flags on appropriate method calls
*/
- protected class TestStatusListener implements
+ protected static class TestStatusListener implements
com.sun.star.frame.XStatusListener {
public boolean disposingCalled = false ;
public boolean statusChangedCalled = false ;
@@ -85,7 +85,7 @@ public class _XDispatch extends MultiMethodTest {
/**
* Listener implementation which sets flags on appropriate method calls
*/
- protected class TestNotificationListener implements
+ protected static class TestNotificationListener implements
com.sun.star.frame.XDispatchResultListener {
public boolean disposingCalled = false ;
public boolean finishedDispatch = false ;
diff --git a/qadevOOo/tests/java/ifc/frame/_XDispatchProviderInterception.java b/qadevOOo/tests/java/ifc/frame/_XDispatchProviderInterception.java
index a627fa13911b..ada2a936c02f 100644
--- a/qadevOOo/tests/java/ifc/frame/_XDispatchProviderInterception.java
+++ b/qadevOOo/tests/java/ifc/frame/_XDispatchProviderInterception.java
@@ -48,7 +48,7 @@ public class _XDispatchProviderInterception extends MultiMethodTest {
* slave interceptors, and redirect all dispatch queries to the master
* provider.
*/
- public class TestInterceptor implements XDispatchProviderInterceptor {
+ public static class TestInterceptor implements XDispatchProviderInterceptor {
private final PrintWriter log;
public XDispatchProvider master = null, slave = null ;
diff --git a/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java b/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
index ec7a366412bb..d6194e447d4f 100644
--- a/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
+++ b/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
@@ -67,7 +67,7 @@ public class _XFrameLoader extends MultiMethodTest {
/**
* Implemetation of load listener which geristers all its calls.
*/
- protected class TestListener implements XLoadEventListener {
+ protected static class TestListener implements XLoadEventListener {
public boolean finished = false ;
public boolean cancelled = false ;
diff --git a/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java b/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java
index af8621d53bd6..f1d2f12c098a 100644
--- a/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java
+++ b/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java
@@ -53,7 +53,7 @@ public class _XNotifyingDispatch extends MultiMethodTest {
/**
* Listener implementation which sets flags on appropriate method calls
*/
- protected class TestNotificationListener implements
+ protected static class TestNotificationListener implements
com.sun.star.frame.XDispatchResultListener {
public boolean disposingCalled = false ;
public boolean finishedDispatch = false ;
diff --git a/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java b/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java
index be8c32da4cf0..8a6d0e397928 100644
--- a/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java
+++ b/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java
@@ -43,7 +43,7 @@ public class _XPopupMenuController extends MultiMethodTest {
tRes.tested("updatePopupMenu()", true);
}
- private class PopupMenuImpl implements XPopupMenu {
+ private static class PopupMenuImpl implements XPopupMenu {
public void addMenuListener(com.sun.star.awt.XMenuListener xMenuListener) {
System.out.println("addMenuListener called.");