?? limitprintinfoinvokerimpl.java
字號(hào):
package jp.co.ntl.swing.ext.user.limitprint;
import java.util.Vector;
import jp.co.ntl.Net;
import jp.co.ntl.NetworkException;
import jp.co.ntl.ServerException;
import jp.co.ntl.TimeOutException;
import jp.co.ntl.limitprint.LimitPrintInfo;
import jp.co.ntl.swing.ext.InvokerUtil;
public class LimitPrintInfoInvokerImpl extends LimitPrintInfoInvoker {
private InvokerUtil iu;
LimitPrintInfoInvokerImpl(Net net) {
this.iu = new InvokerUtil(net);
}
public Vector getLimitPrintInfo() throws NetworkException, ServerException, TimeOutException {
return iu.serverAccessRetVector(Net.limitprintServletName, Net.CMD_GetLimitPrintInfo);
}
public void setLimitPrintInfo(LimitPrintInfo lpInfo) throws NetworkException, ServerException, TimeOutException {
iu.serverAccessRetVoid(Net.limitprintServletName, Net.CMD_SetLimitPrintInfo, lpInfo);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -