⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 printergroupinfoinvoker.java

📁 打印管理程序,测试完全通过.windows开发环境.
💻 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 + -