?? traceresp.java
字號:
package spApi;
public class TraceResp extends SGIP_Command
{
public int Count;
public int Result;
public String NodeId;
public String ReceiveTime;
public String SendTime;
public String Reserve;
public TraceResp()
{
}
public TraceResp(SGIP_Command paramSGIP_Command)
{
super(paramSGIP_Command);
}
public int getCount()
{
return this.Count;
}
public int getResult()
{
return this.Result;
}
public String getNodeId()
{
return this.NodeId;
}
public String getReceiveTime()
{
return this.ReceiveTime;
}
public String SendTime()
{
return this.SendTime;
}
public int readbody()
{
this.Count = this.bodybytes[0];
this.Result = this.bodybytes[1];
this.NodeId = new String(this.bodybytes, 2, 6);
this.ReceiveTime = new String(this.bodybytes, 8, 16);
this.SendTime = new String(this.bodybytes, 24, 16);
return 0;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -