summaryrefslogtreecommitdiff
path: root/java/test/Ice/metrics/InvocationObserverI.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-08-12 15:50:25 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-08-12 15:50:25 -0230
commit2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b (patch)
treeb460e22e91a9fbb9cfb71631303963fa94dd2c9c /java/test/Ice/metrics/InvocationObserverI.java
parentICE-5492 Tcp Loopback Fast Path for C#/C++ on Windows (diff)
downloadice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.bz2
ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.xz
ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.zip
Added eclipse project settings for java.
Fix lots of warnings in Ice for Java.
Diffstat (limited to 'java/test/Ice/metrics/InvocationObserverI.java')
-rw-r--r--java/test/Ice/metrics/InvocationObserverI.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/java/test/Ice/metrics/InvocationObserverI.java b/java/test/Ice/metrics/InvocationObserverI.java
index 5457f85aff0..cfb7e2c6547 100644
--- a/java/test/Ice/metrics/InvocationObserverI.java
+++ b/java/test/Ice/metrics/InvocationObserverI.java
@@ -11,6 +11,7 @@ package test.Ice.metrics;
class InvocationObserverI extends ObserverI implements Ice.Instrumentation.InvocationObserver
{
+ @Override
public synchronized void
reset()
{
@@ -27,18 +28,21 @@ class InvocationObserverI extends ObserverI implements Ice.Instrumentation.Invoc
}
}
+ @Override
public synchronized void
retried()
{
++retriedCount;
}
+ @Override
public synchronized void
userException()
{
++userExceptionCount;
}
+ @Override
public synchronized Ice.Instrumentation.RemoteObserver
getRemoteObserver(Ice.ConnectionInfo c, Ice.Endpoint e, int a, int b)
{
@@ -51,6 +55,7 @@ class InvocationObserverI extends ObserverI implements Ice.Instrumentation.Invoc
}
+ @Override
public synchronized Ice.Instrumentation.CollocatedObserver
getCollocatedObserver(Ice.ObjectAdapter adapter, int a, int b)
{