Changeset 207 in josm for src/org/openstreetmap/josm/plugins


Ignore:
Timestamp:
2007-04-03T17:46:00+02:00 (18 years ago)
Author:
imi
Message:
  • added "case sensitive" option to search dialog
  • added a plugin manifest option "Plugin-Stage" to specify boot stage order (default is 50, smaller first)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/plugins/PluginInformation.java

    r192 r207  
    4040        public final boolean early;
    4141        public final String author;
     42        public final int stage;
    4243        public final List<URL> libraries = new ArrayList<URL>();
    4344
     
    5758                        description = attr.getValue("Plugin-Description");
    5859                        early = Boolean.parseBoolean(attr.getValue("Plugin-Early"));
     60                        String stageStr = attr.getValue("Plugin-Stage");
     61                        stage = stageStr == null ? 50 : Integer.parseInt(stageStr);
    5962                        author = attr.getValue("Author");
    6063                        libraries.add(new URL(getURLString(file.getAbsolutePath())));
Note: See TracChangeset for help on using the changeset viewer.