summaryrefslogtreecommitdiffstats
path: root/odk/examples/java/Inspector/UnoMethodNode.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:36:04 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commitda677dfd59c2b551f3335ee0a5d5dfb33f9869c5 (patch)
tree9aa09066c95935117bf405b119ed9f89f448a54d /odk/examples/java/Inspector/UnoMethodNode.java
parentjava: reduce scope, make constructors private (diff)
downloadcore-da677dfd59c2b551f3335ee0a5d5dfb33f9869c5.tar.gz
core-da677dfd59c2b551f3335ee0a5d5dfb33f9869c5.zip
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'odk/examples/java/Inspector/UnoMethodNode.java')
-rw-r--r--odk/examples/java/Inspector/UnoMethodNode.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/java/Inspector/UnoMethodNode.java b/odk/examples/java/Inspector/UnoMethodNode.java
index 8b2e0749b730..896db027cefd 100644
--- a/odk/examples/java/Inspector/UnoMethodNode.java
+++ b/odk/examples/java/Inspector/UnoMethodNode.java
@@ -39,11 +39,11 @@ import com.sun.star.reflection.XIdlMethod;
import com.sun.star.uno.TypeClass;
public class UnoMethodNode extends UnoNode{
- XIdlMethod m_xIdlMethod = null;
- Object[] m_oParamObjects = null;
- Object m_oUnoReturnObject = null;
- boolean m_bisInvoked = false;
- XUnoMethodNode m_xUnoMethodNode = null;
+ private XIdlMethod m_xIdlMethod = null;
+ private Object[] m_oParamObjects = null;
+ private Object m_oUnoReturnObject = null;
+ private boolean m_bisInvoked = false;
+ private XUnoMethodNode m_xUnoMethodNode = null;
/** Creates a new instance of UnoMethodNode */