callassociation.java

来自「First of all, the Applet-phone is a SIP 」· Java 代码 · 共 29 行

JAVA
29
字号
/* * CallAssociation.java * * Created on May 7, 2003, 9:40 AM */package gov.nist.examples.pcc;/** * * @author  deruelle */public class CallAssociation {        protected Call firstCall;    protected Call secondCall;        /** Creates a new instance of CallAssociation */    public CallAssociation(Call firstCall,Call secondCall) {        this.firstCall=firstCall;        this.secondCall=secondCall;    }        public String getCallId() {        return firstCall.callId;    }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?