Ignore:
Timestamp:
10/17/12 11:54:37 (12 years ago)
Author:
sherbold
Message:
  • replaced occurences of QUEST/Quest/quest with AutoQUEST
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java

    r927 r929  
    3333/** 
    3434 * <p> 
    35  * This class provides the functionality to load QUEST plug-ins from a 
     35 * This class provides the functionality to load AutoQUEST plug-ins from a 
    3636 * pre-defined folder. 
    3737 * </p> 
     
    5454         * </p> 
    5555         */ 
    56         private final Collection<QuestPlugin> plugins; 
     56        private final Collection<AutoQUESTPlugin> plugins; 
    5757 
    5858        /** 
     
    7777                } 
    7878                this.pluginDir = pluginDir; 
    79                 plugins = new LinkedList<QuestPlugin>(); 
     79                plugins = new LinkedList<AutoQUESTPlugin>(); 
    8080        } 
    8181 
     
    112112                        } 
    113113                        try { 
    114                                 QuestPlugin pluginObject = (QuestPlugin) pluginClass 
     114                                AutoQUESTPlugin pluginObject = (AutoQUESTPlugin) pluginClass 
    115115                                                .newInstance(); 
    116116                                plugins.add(pluginObject); 
     
    123123                        } catch (ClassCastException e) { 
    124124                                throw new PluginLoaderException("Class " + pluginClassName 
    125                                                 + " not instance of QuestPlugin"); 
     125                                                + " not instance of AutoQUESTPlugin"); 
    126126                        } 
    127127                } 
     
    232232        /** 
    233233         * <p> 
    234          * Checks if the name of a file indicates that it defines a QUEST plug-in. 
     234         * Checks if the name of a file indicates that it defines a AutoQUEST plug-in. 
    235235         * The structure of valid plug-in filenames is 
    236236         * <code>quest-plugin-%PLUGIN_NAME%-version.jar</code>, where 
     
    241241         * @param filename 
    242242         *            filename that is checked 
    243          * @return true if filename matches pattern of QUEST plug-in; false 
     243         * @return true if filename matches pattern of AutoQUEST plug-in; false 
    244244         *         otherwise 
    245245         */ 
     
    254254        } 
    255255         
    256         public Collection<QuestPlugin> getPlugins() { 
     256        public Collection<AutoQUESTPlugin> getPlugins() { 
    257257                return Collections.unmodifiableCollection(plugins); 
    258258        } 
Note: See TracChangeset for help on using the changeset viewer.