261262263264265266267268269270
* * @param callerId the caller id of this channel. */ void setCallerId(final CallerId callerId) { final CallerId oldCallerId = this.callerId; this.callerId = callerId; firePropertyChange(PROPERTY_CALLER_ID, oldCallerId, callerId); }
246247248249250251252253254255