[Asterisk-java-cvs] CVS: asterisk-java/src/java/net/sf/asterisk/fastagi AbstractAGIScript.java,1.12,
Brought to you by:
srt
From: Stefan R. <sr...@us...> - 2005-07-27 09:59:56
|
Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31403/src/java/net/sf/asterisk/fastagi Modified Files: AbstractAGIScript.java Log Message: Added @since java doc tag to getData() methods Index: AbstractAGIScript.java =================================================================== RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/AbstractAGIScript.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -p -r1.12 -r1.13 --- AbstractAGIScript.java 14 Jul 2005 19:26:57 -0000 1.12 +++ AbstractAGIScript.java 27 Jul 2005 09:59:44 -0000 1.13 @@ -148,6 +148,7 @@ public abstract class AbstractAGIScript * * @param file the name of the file to play * @return a String containing the DTMF the user entered + * @since 0.2 */ protected String getData(AGIChannel channel, String file) throws AGIException @@ -167,6 +168,7 @@ public abstract class AbstractAGIScript * 0 means standard timeout value, -1 means "ludicrous time" * (essentially never times out). * @return a String containing the DTMF the user entered + * @since 0.2 */ protected String getData(AGIChannel channel, String file, int timeout) throws AGIException @@ -189,6 +191,7 @@ public abstract class AbstractAGIScript * @param maxDigits the maximum number of digits the user is allowed to * enter * @return a String containing the DTMF the user entered + * @since 0.2 */ protected String getData(AGIChannel channel, String file, int timeout, int maxDigits) throws AGIException |