privilegeinfoinvokerimpl.java
来自「打印管理程序,测试完全通过.windows开发环境.」· Java 代码 · 共 22 行
JAVA
22 行
package jp.co.ntl.swing.ext.user.privilege;
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.swing.ext.InvokerUtil;
public class PrivilegeInfoInvokerImpl extends PrivilegeInfoInvoker {
private InvokerUtil iu;
PrivilegeInfoInvokerImpl(Net net) {
this.iu = new InvokerUtil(net);
}
public Vector getPrivilegeInfo() throws NetworkException, ServerException, TimeOutException {
return iu.serverAccessRetVector(Net.privilegeServletName, Net.CMD_GetPrivilegeInfo);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?