📄 ri.txt
字号:
JCC API Instructions (Rev. 1.0b)--------------------------------Contents--------This package includes the Java Call Control (JCC) Reference Implementation (RI).Subdirectories: jcc/doc - Documentation file jcc/lib - Compiled classes of the JCC RI in a JAR fileWarning!--------The JCC RI requires JDK 1.4 or higher for it uses the java.regex.* classesthat came available in this release.Instructions------------To install, unzip this archive into a directory (e.g. the same directory in which the JCC API was unzipped). A sample JCC application is located incom.telcordia.jain.jcc.ri.TestApplication.Obtaining the RI Provider-------------------------The following code fragment shows how to obtain a new JCC RI Provider: // Create the provider JccPeer peer = JccPeerFactory.getJccPeer("com.telcordia.jain.jcc.ri.jcc.JccPeerImpl"); JccProvider p = peer.getProvider("");To get the exact same provider object every time, use the following code sample: // Create the provider JccPeer peer = JccPeerFactory.getJccPeer("com.telcordia.jain.jcc.ri.jcc.JccPeerImpl"); JccProvider p = peer.getProvider("default");Creating Virtual Phones-----------------------The following code fragment shows how to create a virtual phone:new com.telcordia.jain.ri.phone.Phone( provider, sAddress, color );...where color can be "green", "red", "yellow", or "blue".
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -