001    /*
002    
003      $Id: PluginData.java,v 1.2 2003/03/22 17:44:13 culdesac Exp $
004    
005    */
006    
007    package sharpster.common;
008    
009    /**
010     * An interface which should be implemented by all types of pluginData classes.
011     */
012    public abstract class PluginData implements java.io.Serializable {
013    
014        /**
015         * returns the name of the plug-in which has created this data.
016         */
017        public abstract String getPluginName();
018    }