Changes between Version 119 and Version 120 of WikiStart
- Timestamp:
- 01/08/19 17:19:44 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v119 v120 27 27 28 28 === 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. 29 Party 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 31 Instances 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. 31 32 32 Jar files are loaded with an isolated jar class loader that should avoid collisions33 The jar files are loaded with an isolated jar class loader that should avoid collisions 33 34 with possibly identically named but possibly different packages in other jar files. 34 35