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)