[Asterisk-java-cvs] CVS: asterisk-java/src/java/net/sf/asterisk/manager/event AlarmClearEvent.java,1
Brought to you by:
srt
From: Stefan R. <sr...@us...> - 2005-02-27 15:15:15
|
Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20196/src/java/net/sf/asterisk/manager/event Modified Files: AlarmClearEvent.java Log Message: Removed unused attribute alarm Index: AlarmClearEvent.java =================================================================== RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/manager/event/AlarmClearEvent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -p -r1.2 -r1.3 --- AlarmClearEvent.java 23 Feb 2005 22:50:58 -0000 1.2 +++ AlarmClearEvent.java 27 Feb 2005 15:15:02 -0000 1.3 @@ -29,7 +29,10 @@ public class AlarmClearEvent extends Man * Serializable version identifier */ private static final long serialVersionUID = -3584791971422266558L; - private String alarm; + + /** + * The number of the zap channel that left alarm state. + */ private Integer channel; /** @@ -41,7 +44,9 @@ public class AlarmClearEvent extends Man } /** - * Returns the number of the channel that left alarm state. + * Returns the number of the zap channel that left alarm state. + * + * @return the number of the zap channel that left alarm state. */ public Integer getChannel() { @@ -49,7 +54,9 @@ public class AlarmClearEvent extends Man } /** - * Sets the number of the channel that left alarm state. + * Sets the number of the zap channel that left alarm state. + * + * @param channel the number of the zap channel that left alarm state. */ public void setChannel(Integer channel) { |