summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_remotebridge/uno/various.java')
-rw-r--r--qadevOOo/tests/java/mod/_remotebridge/uno/various.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/tests/java/mod/_remotebridge/uno/various.java b/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
index 7c132745cd9d..d23af9a14174 100644
--- a/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
+++ b/qadevOOo/tests/java/mod/_remotebridge/uno/various.java
@@ -80,7 +80,7 @@ public class various extends TestCase {
*
* @see com.sun.star.bridge.XInstanceProvider
*/
- protected class MyInstanceProvider implements XInstanceProvider {
+ private class MyInstanceProvider implements XInstanceProvider {
/**
* a MultiServiceFactory for creating instances
*
@@ -93,7 +93,7 @@ public class various extends TestCase {
*
* @see com.sun.star.lang.MultiServiceFactory
*/
- public MyInstanceProvider(XMultiServiceFactory xMSF) {
+ private MyInstanceProvider(XMultiServiceFactory xMSF) {
this.xMSF = xMSF;
}
@@ -118,25 +118,25 @@ public class various extends TestCase {
* Then stores exception thrown by call if it occurred, or
* return value.
*/
- protected class AcceptorThread extends Thread {
+ private class AcceptorThread extends Thread {
/**
* If exception occurred during method call it is
* stored in this field.
*/
- public Exception ex = null ;
+ private Exception ex = null ;
private final XAcceptor acc;
private final XInstanceProvider xInstProv;
private final XBridgeFactory xBrdgFctr;
/**
* If method call returns some value it stores in this field.
*/
- public XConnection acceptedCall = null ;
+ private XConnection acceptedCall = null ;
/**
* Creates object which can call <code>accept</code> method
* of the Acceptor object specified.
*/
- public AcceptorThread(XAcceptor acc, XInstanceProvider xInstProv,
+ private AcceptorThread(XAcceptor acc, XInstanceProvider xInstProv,
XBridgeFactory xBrdgFctr) {
this.acc = acc ;
this.xInstProv = xInstProv;