Author: toad
Date: 2006-12-13 22:01:05 +0000 (Wed, 13 Dec 2006)
New Revision: 11386

Modified:
   trunk/freenet/src/freenet/plugin/api/FreenetPlugin.java
Log:
shortName/longName not name/author

Modified: trunk/freenet/src/freenet/plugin/api/FreenetPlugin.java
===================================================================
--- trunk/freenet/src/freenet/plugin/api/FreenetPlugin.java     2006-12-13 
21:57:43 UTC (rev 11385)
+++ trunk/freenet/src/freenet/plugin/api/FreenetPlugin.java     2006-12-13 
22:01:05 UTC (rev 11386)
@@ -7,11 +7,11 @@
  */
 public interface FreenetPlugin {

-       /** The plugin's name */
-       public String name();
+       /** The plugin's short name (shouldn't usually have spaces, 
punctuation, author etc; one to three words StuckTogetherLikeThis) */
+       public String shortName();

-       /** The plugin's author (largely to disambiguate name!) */
-       public String author();
+       /** The plugin's long name (can have spaces, mention author or purpose, 
etc) */
+       public String longName();

        /** The plugin's version number. MUST BE AT LEAST INCREMENTED ON EVERY 
RELEASE. */
        public long version();


Reply via email to