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

📄 behavioursfactory.java

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

import planet.commonapi.exception.InitializationException;

/**
 * This interface provides a method to get an instance of any component required 
 * in an overlay behaviours based implementation. When the current overlay
 * don't use behaviours, all these factory methods throws an
 * InitializationException.
 * <br><br>
 * Any future implementation must contain the no argument constructor.
 * <br><br>
 * @author <a href="mailto: jordi.pujol@estudiants.urv.es">Jordi Pujol</a>
 * @author <a href="mailto: marc.sanchez@urv.net">Marc Sanchez</a>
 * 07-jul-2005
 */
public interface BehavioursFactory extends java.io.Serializable {
	
    /**
     * Sets the initial values for this BehavioursFactory.
     * @param pool BehavioursPool class reference.
     * @param filter BehavioursFilter class reference.
     * @param invoker BehavioursInvoker class reference.
     * @param pattern BehavioursPattern class reference.
     * @param roleSelector BehavioursRoleSelector class reference.
     * @return The same instance once it has been updated.
     * @throws InitializationException if some error occurs during the
     * initialization process.
     */
    public BehavioursFactory setValues(Class pool, Class filter, Class invoker, 
            Class pattern, Class roleSelector) throws InitializationException;
    
    /**
     * Builds an instance of the current BehavioursFilter implementation.
     * @return An instance of the current BehavioursFilter implementation.
     * @throws InitializationException when an error occurs during the 
     * initialization or when this factory method is non applicable.
     */
    public BehavioursFilter buildBehavioursFilter() throws InitializationException;
    /**
     * Builds an instance of the current BehavioursInvoker implementation.
     * @return An instance of the current BehavioursInvoker implementation.
     * @throws InitializationException when an error occurs during the 
     * initialization or when this factory method is non applicable.
     */
    public BehavioursInvoker buildBehavioursInvoker() throws InitializationException;
    /**
     * Builds an instance of the current BehavioursPattern implementation.
     * @return An instance of the current BehavioursPattern implementation.
     * @throws InitializationException when an error occurs during the 
     * initialization or when this factory method is non applicable.
     */
    public BehavioursPattern buildBehavioursPattern() throws InitializationException;
    /**
     * Builds an instance of the current BehavioursPool implementation.
     * @return An instance of the current BehavioursPool implementation.
     * @throws InitializationException when an error occurs during the 
     * initialization or when this factory method is non applicable.
     */
    public BehavioursPool buildBehavioursPool() throws InitializationException;
    /**
     * Builds an instance of the current BehavioursRoleSelector implementation.
     * @return An instance of the current BehavioursRoleSelector implementation.
     * @throws InitializationException when an error occurs during the 
     * initialization or when this factory method is non applicable.
     */
    public BehavioursRoleSelector buildBehavioursRoleSelector() throws InitializationException;
}


⌨️ 快捷键说明

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