Ignore:
Timestamp:
09/05/12 15:53:38 (12 years ago)
Author:
sherbold
Message:
  • updated QuestPlugin? API and implementing plug-ins to ensure that the internal representation is immutable from the outside.
File:
1 edited

Legend:

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

    r514 r772  
    11package de.ugoe.cs.quest.plugin; 
     2 
     3import java.util.List; 
    24 
    35/** 
     
    2224        /** 
    2325         * <p> 
    24          * Collection of {@link String}s that contain the commands defined by this 
    25          * plug-in. 
     26         * {@link List} of {@link String}s that contain the commands defined by this 
     27         * plug-in. The List is immutable. 
    2628         * </p> 
    2729         * <p> 
     
    3234         * @return 
    3335         */ 
    34         public String[] getCommandPackages(); 
     36        public List<String> getCommandPackages(); 
    3537} 
Note: See TracChangeset for help on using the changeset viewer.