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

📄 nodefactory.java

📁 p2p仿真器。开发者可以工作在覆盖层中进行创造和测试逻辑算法或者创建和测试新的服务。PlanetSim还可以将仿真代码平稳转换为在Internet上的实验代码
💻 JAVA
字号:
package planet.commonapi.factory;

import planet.commonapi.*;
import planet.commonapi.exception.*;

/**
 * It's a factory for Nodes abstraction. It pretends build Nodes of any
 * class using the factory method pattern design.
 * <br><br>
 * Any future implementation must contain the no argument constructor.
 * <br><br>
 * @see planet.commonapi.Node
 * @author <a href="mailto: jordi.pujol@estudiants.urv.es">Jordi Pujol</a>
 * 07-jul-2005
 */
public interface NodeFactory extends java.io.Serializable {
    
    /**
     * Sets the initial values for this NodeFactory.
     * @param idFactory IdFactory to use to build all required Ids.
     * @param nodeClass Class reference of the current Node implementation.
     * @return The same instance once it has been updated.
     * @throws InitializationException if some error occurs during the
     * initialization process.
     */
    public NodeFactory setValues(IdFactory idFactory, Class nodeClass) throws InitializationException;
	/**
	 * Builds a Node using the default IdFactory  and the default
	 * Class for him.
	 * @return A new instance of the default Node.
	 */
	public Node buildNode() throws InitializationException;
	
	/**
	 * Builds a Node using the <b>Id</b> that appears in parameter,
	 * using the default Class for him.
	 * @param id
	 * @return A new instance of the default Node with the specified Id.
	 */
	public Node buildNode(Id id) throws InitializationException;
}

⌨️ 快捷键说明

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