?? pastcall.java
字號:
package net.java.mais.sip;
import net.java.mais.common.DateHour;
/**
* <p>Title: Netsite TudoMais</p>
* <p>Description:JAIN-SIP Audio/Video phone application</p>
* <p>Copyright: Copyright (c) 2006</p>
* <p>Organisation: CTBC Telecom / Netsite </p>
* @author Thiago Rocha Camargo (barata7@yahoo.com)
*/
public class PastCall {
public static final String REALIZADA = "Realizada";
public static final String RECEBIDA = "Recebida";
public static final String PERDIDA = "Perdida";
private DateHour dh = new DateHour();
private String callerID=null;
private String type=null;
private String name="";
private String time="";
public PastCall(String t, String c){
time=dh.getDate();
callerID=c;
type=t;
}
public PastCall(String t, String c, String n){
time=dh.getDate();
callerID=c;
type=t;
name=n;
}
public String getType(){
return type;
}
public String getCallerID(){
return callerID;
}
public String getName(){
return name;
}
public String getTime(){
return time;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -