Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20008/src/java/net/sf/asterisk/manager/event
Modified Files:
DialEvent.java
Log Message:
Fixed parameter names
Index: DialEvent.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event/DialEvent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -p -r1.1 -r1.2
--- DialEvent.java 2 Mar 2005 01:57:29 -0000 1.1
+++ DialEvent.java 10 Mar 2005 22:11:27 -0000 1.2
@@ -123,9 +123,9 @@ public class DialEvent extends ManagerEv
*
* @param callerId the caller*ID.
*/
- public void setCallerId(String callerid)
+ public void setCallerId(String callerId)
{
- this.callerId = callerid;
+ this.callerId = callerId;
}
/**
@@ -139,11 +139,13 @@ public class DialEvent extends ManagerEv
}
/**
- * Sets the callerId name.
+ * Sets the Caller*Id Name.
+ *
+ * @param callerIdName the Caller*Id Name to set.
*/
- public void setCallerIdName(String calleridname)
+ public void setCallerIdName(String callerIdName)
{
- this.callerIdName = calleridname;
+ this.callerIdName = callerIdName;
}
/**
@@ -167,9 +169,9 @@ public class DialEvent extends ManagerEv
}
/**
- * Returns the unique ID of the deistination channel.
+ * Returns the unique ID of the distination channel.
*
- * @return the unique ID of the deistination channel.
+ * @return the unique ID of the distination channel.
*/
public String getDestUniqueId()
{
@@ -181,8 +183,8 @@ public class DialEvent extends ManagerEv
*
* @param destUniqueId the unique ID of the distination channel.
*/
- public void setDestUniqueId(String destuniqueid)
+ public void setDestUniqueId(String destUniqueId)
{
- this.destUniqueId = destuniqueid;
+ this.destUniqueId = destUniqueId;
}
}
|