datacontainers.java

来自「监控大型网络的软件。能够自动发现拓扑结构」· Java 代码 · 共 24 行

JAVA
24
字号
package no.ntnu.nav.getDeviceData.dataplugins;/** * Each DataContainer must have an unique name, and DataContainer * objects can be retrieved using the {@link #getContainer * getContainer()} method with the name of the DataContainer as * argument. See the documentation for the class implementing * DataContainer in each data plugin for getting the names. * * @see DataContainer */public interface DataContainers {	/**	 * Return the container assosiated with name, or null if no such container exists.	 *	 * @param name The name of the DataContainer	 * @return the DataContainer associated with name, or null if no such container exists.	 */	public DataContainer getContainer(String name);}

⌨️ 快捷键说明

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