| Version 25 (modified by , 11 years ago) ( diff ) |
|---|
Languages:
- Ελληνικά
- English
- Esperanto
- français
- 日本語
- norsk bokmål
- Nederlands
Development Guidelines ¶
How your code should look like ¶
- make sure the code is Java 7 compatible
- make sure there is no trailing white space
- don't use multiple consecutive empty lines
- JOSM uses 4 characters indentation and no tab stops (If you use Notepad++ you can change the default indentation at the "change indentation settings" button in the toolbar by removing the check at "use tabs".)
- Document your code thoroughly. Many people will thank you :)
How your javadoc should look like ¶
- The Oracle Javadoc style guide is used as the base guide
@sinceis used for public classes and methods (visible to plugin developers) with the JOSM revision that introduced the element. Example:@since 5408@sinceis updated when a public method signature changes or if a class is renamed@sincecan be omitted for public methods and fields introduced at the same time as the class, provided they do not have changed and the class is correctly documented.
@throwsis preferred to@exception
Configuring Eclipse ¶
Internationalization ¶
- make sure you use
tr(...)for all localized stringsimport import static org.openstreetmap.josm.tools.I18n.tr; // use tr(...) for exception messages // throw new Exception(tr("error message always in tr()")); // use tr(...) for labels, title, tooltip texts and the like // new JLabel(tr("Label always in tr()")); // etc.
- never assemble localized messages with
+. Use format placeholders instead.
DONT
new JLabel(tr("My Label " + labelId));
DO
new JLabel(tr("My Label {0}",labelId));
Only exception:
+can be used to break long lines of non-variable texts.
- When using apostrophe, the following rules apply:
For all
trthe apostrophe is special. (Like backslash in C)
It needs to be escaped by another apostrophe:
new JButton(tr("Don''t press me more than {0} times!", n))
Back to Developers Guide
Attachments (4)
- ss1.png (142.2 KB ) - added by 16 years ago.
- ss2.png (55.2 KB ) - added by 16 years ago.
- ss3.png (68.2 KB ) - added by 16 years ago.
- styleguide_compiler_16.png (55.0 KB ) - added by 13 years ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.






