Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1539/src/java/net/sf/asterisk/manager/event
Modified Files:
DialEvent.java
Log Message:
Added note to javadoc about default caller id values
Index: DialEvent.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event/DialEvent.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -p -r1.3 -r1.4
--- DialEvent.java 10 Mar 2005 22:19:27 -0000 1.3
+++ DialEvent.java 26 Jul 2005 11:35:58 -0000 1.4
@@ -18,10 +18,12 @@ package net.sf.asterisk.manager.event;
/**
* A dial event is triggered whenever a phone attempts to dial someone.<br>
- * This event is implemented in <code>apps/app_dial.c</code>
+ * This event is implemented in <code>apps/app_dial.c</code>.<br>
+ * Available since Asterisk 1.2.
*
* @author Asteria Solutions Group, Inc. <http://www.asteriasgi.com/>
* @version $Id$
+ * @since 0.2
*/
public class DialEvent extends ManagerEvent
{
@@ -113,7 +115,7 @@ public class DialEvent extends ManagerEv
/**
* Returns the Caller*ID.
*
- * @return the Caller*ID.
+ * @return the Caller*ID or "<unknown>" if none has been set.
*/
public String getCallerId()
{
@@ -133,7 +135,7 @@ public class DialEvent extends ManagerEv
/**
* Returns the Caller*ID Name.
*
- * @return the Caller*ID Name.
+ * @return the Caller*ID Name or "<unknown>" if none has been set.
*/
public String getCallerIdName()
{
|