?? printergroupinfoinvoker.java
字號:
package jp.co.ntl.swing.ext.printer.printergroup;
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.printergroup.PrinterGroupInfo;
public abstract class PrinterGroupInfoInvoker {
public static PrinterGroupInfoInvoker getInstance(Net net) {
return new PrinterGroupInfoInvokerImpl(net);
}
public abstract Vector getPrinterGroupInfo() throws NetworkException, ServerException, TimeOutException;
public abstract void setPrinterGroupInfo(PrinterGroupInfo printerGroupInfo) throws NetworkException, ServerException, TimeOutException;
public abstract int addPrinterGroup(PrinterGroupInfo printerGroupInfo) throws NetworkException, ServerException, TimeOutException;
public abstract void delPrinterGroup(Vector vcPgInfo) throws NetworkException, ServerException, TimeOutException;
public abstract boolean isRelatedPrinterGroup(Vector vcPgInfo) throws NetworkException, ServerException, TimeOutException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -