-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCONTRIBUTE
56 lines (36 loc) · 1.23 KB
/
CONTRIBUTE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
How to contribute
=================
Issues and feature requests
---------------------------
Please report issues and feature requests at the GitLab page.
Patches
-------
Please send patches over the GitLab page or send a well formatted Git patch via
email.
Important notes about patches
-----------------------------
Automatic formatting is enabled on the project, including formatting of the code
and organizing the imports and members of the class. The used code formatter is
attached to the repository as XML export, you must import it in Eclipse.
Unfortunately, there is no per project setting for the sort order of the class
members, you have to set it globally in the preferences:
Java -> Appearance -> Members Sort Order
The order is as follows:
1. Static Fields
2. Fields
3. Static Initializers
4. Constructors
5. Initializers
6. Static Methods
7. Methods
8. Types
The sort order for members in the same category is:
1. Public
2. Package
3. Protected
4. Private
If you are unable to set these settings, please disable the automatic sorting in
the project settings and sort them by hand according to these rules.
How to write a patch
--------------------
Simple, import this project into Eclipse and start coding.