listeners.removeElement(l);
}
/** Notifies all CANTimeoutListeners that a CANTimeoutException has occurred **/
public void notifyCANTimeout() {
GRTCANJaguarException ex = new GRTCANJaguarException(GRTCANJaguarException.CAN_TIMEOUT, this);
for (int i = 0; i < listeners.size(); i++) {
((CANTimeoutListener) listeners.elementAt(i)).CANTimedOut(ex);
}
}