BaseTestPluginImpl.java :  » Web-Crawler » jspider » net » javacoding » jspider » mockobjects » plugin » Java Open Source

Java Open Source » Web Crawler » jspider 
jspider » net » javacoding » jspider » mockobjects » plugin » BaseTestPluginImpl.java
package net.javacoding.jspider.mockobjects.plugin;

import net.javacoding.jspider.spi.Plugin;
import net.javacoding.jspider.api.event.JSpiderEvent;

/**
 * $Id: BaseTestPluginImpl.java,v 1.2 2003/04/03 16:25:23 vanrogu Exp $
 */
public class BaseTestPluginImpl implements Plugin {

    public static final int DEFAULT_CONSTRUCTOR = 1;
    public static final int NAME_CONSTRUCTOR = 2;
    public static final int CONFIG_CONSTRUCTOR = 3;
    public static final int NAMECONFIG_CONSTRUCTOR = 3;

    protected int usedConstructor;

    public BaseTestPluginImpl ( int usedConstructor ) {
      this.usedConstructor = usedConstructor;
    }

    public String getName() {
        return null;
    }

    public String getVersion() {
        return null;
    }

    public String getDescription() {
        return null;
    }

    public String getVendor() {
        return null;
    }

    public void initialize() {
    }

    public void shutdown() {
    }

    public void notify(JSpiderEvent event) {
    }

    public int getUsedConstuctor ( ) {
        return usedConstructor;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.