devicefinder.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 25 行

JAVA
25
字号
/*
 * $Id: DeviceFinder.java,v 1.1 2003/11/25 11:41:30 epr Exp $
 */
package org.jnode.driver;

/**
 * Interface used to discover devices on a given bus.
 *
 * @see org.jnode.driver.Device 
 * @author Ewout Prangsma (epr@users.sourceforge.net)
 */
public interface DeviceFinder {

	/**
	 * Find all devices that are connected to the given bus and register 
	 * them with the given device manager.
	 * @param devMan
	 * @param bus
	 * @throws DeviceException
	 */
	public void findDevices(DeviceManager devMan, Bus bus)
	throws DeviceException;

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?