appuicallimpl.java
来自「中兴公司在parlayx开发方面的培训文档」· Java 代码 · 共 41 行
JAVA
41 行
package samples.mpccs.simpleprepaid;
public class AppUICallImpl extends AppUIImpl
implements org.csapi.ui.IpAppUICallOperations
{
public AppUICallImpl(){}
public void sendInfoRes (int userInteractionSessionID,
int assignmentID, org.csapi.ui.TpUIReport response)
{
TheApplication.sendInfoRes(userInteractionSessionID, assignmentID, response);
}
public void sendInfoAndCollectRes (int userInteractionSessionID,
int assignmentID, org.csapi.ui.TpUIReport response, String collectedInfo)
{
TheApplication.sendInfoAndCollectRes(
userInteractionSessionID, assignmentID, response, collectedInfo);
}
public void recordMessageRes (int userInteractionSessionID, int assignmentID,
org.csapi.ui.TpUIReport response, int messageID)
{
TheApplication.recordMessageRes(
userInteractionSessionID, assignmentID, response, messageID);
}
public void recordMessageErr (int userInteractionSessionID, int assignmentID,
org.csapi.ui.TpUIError error)
{}
public void deleteMessageRes (int userInteractionSessionID,
org.csapi.ui.TpUIReport response, int assignmentID){}
public void deleteMessageErr(int userInteractionSessionID,
org.csapi.ui.TpUIError error, int assignmentID){}
public void abortActionRes (int userInteractionSessionID, int assignmentID){}
public void abortActionErr (int userInteractionSessionID,
int assignmentID, org.csapi.ui.TpUIError error){}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?