From 9d63857572323c058d4fffe62a54e39fc4c886d1 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Mon, 24 Jun 2013 15:48:13 +0300 Subject: [PATCH] Adds javadoc --- .../impl/protocol/jabber/CallPeerJabberImpl.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/net/java/sip/communicator/impl/protocol/jabber/CallPeerJabberImpl.java b/src/net/java/sip/communicator/impl/protocol/jabber/CallPeerJabberImpl.java index 6b6e9d00d..639a13f07 100644 --- a/src/net/java/sip/communicator/impl/protocol/jabber/CallPeerJabberImpl.java +++ b/src/net/java/sip/communicator/impl/protocol/jabber/CallPeerJabberImpl.java @@ -1465,6 +1465,13 @@ else if (((IQ) result).getType() != IQ.Type.RESULT) } } + /** + * Check whether a COIN is scheduled to be sent to this CallPeer + * (i.e. there is a thread which will eventually (after sleeping a certain + * amount of time) trigger a COIN to be sent) + * @return true if there is a COIN scheduled to be sent to this + * CallPeer and false otherwise + */ public boolean isCoinScheduled() { synchronized (coinScheduledSyncRoot) @@ -1473,6 +1480,11 @@ public boolean isCoinScheduled() } } + /** + * Sets the property which indicates whether a COIN is scheduled to be sent + * to this CallPeer. + * @param coinScheduled + */ public void setCoinScheduled(boolean coinScheduled) { synchronized (coinScheduledSyncRoot)