📄 callctlcallev.java
字号:
/* #pragma ident "@(#)CallCtlCallEv.java 1.7 97/01/22 SMI" * Copyright (c) 1996 Sun Microsystems, Inc. All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * and its documentation for NON-COMMERCIAL purposes and without * fee is hereby granted provided that this copyright notice * appears in all copies. Please refer to the file "copyright.html" * for further important copyright and licensing information. * * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. */package java.telephony.callcontrol.events;import java.telephony.events.CallEv;import java.telephony.*;import java.telephony.callcontrol.*;public interface CallCtlCallEv extends CallCtlEv, CallEv { /** * Returns the calling Address associated with this call. The calling * Address is defined as the Address which placed the telephone call. * <p> * If the calling address is unknown or not yet known, this method returns * null. * <p> * @return The calling Address. */ public CallControlAddress getCallingAddress(); /** * Returns the calling Terminal associated with this Call. The calling * Terminal is defined as the Terminal which placed the telephone call. * <p> * If the calling Terminal is unknown or not yet know, this method returns * null. * <p> * @return The calling Terminal. */ public CallControlTerminal getCallingTerminal(); /** * Returns the called Address associated with this Call. The called * Address is defined as the Address to which the call has been originally * placed. * <p> * If the called address is unknown or not yet known, this method returns * null. * <p> * @returns The called Address. */ public CallControlAddress getCalledAddress(); /** * Returns the last redirected Address associated with this Call. * The last redirected Address is the Address at which the current telephone * call was placed immediately before the current Address. This is common * if a Call is forwarded to several Addresses before being answered. * <p> * If the the last redirected address is unknown or not yet known, this * method returns null. * <p> * @returns The last redirected Address for this telephone Call. */ public CallControlAddress getLastRedirectedAddress();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -