Changes between Version 119 and Version 120 of WikiStart


Ignore:
Timestamp:
01/08/19 17:19:44 (5 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v119 v120  
    2727
    2828=== Some technical info
    29 Party jar files must have a Main-Class set in the MANIFEST.MF file. This main-class must have a static
    30 main function as usual; this function will be called to start your party.
     29Party jar files must have a Main-Class set in the MANIFEST.MF file. This main-class must implement Party and have a no-arg constructor.
     30
     31Instances of your class can be made both for extracting general info as getDescription(), or to really run your class. Therefore we recommend to do initialization of the party only in the init() and not in the constructor or static code.
    3132       
    32 Jar files are loaded with an isolated jar class loader that should avoid collisions
     33The jar files are loaded with an isolated jar class loader that should avoid collisions
    3334with possibly identically named but possibly different packages in other jar files.
    3435