Skip to content

Commit 1f5b711

Browse files
committed
Convert CodeConventions document from MS Office to Markdown format
Because we don't need large binary blobs in the repository.
1 parent 3fdb2ee commit 1f5b711

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

CodeConventions.docx

-13.7 KB
Binary file not shown.

CodeConventions.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Class structure
2+
3+
## Constants
4+
1. public constants (public static final)
5+
2. protected constants (protected static final)
6+
3. private constants (private static final)
7+
8+
## Fields
9+
4. public fields
10+
5. protected fields
11+
6. private fields
12+
13+
## Constructors
14+
7. public constructors
15+
8. protected constructors
16+
9. private constructors
17+
18+
## Methods
19+
10. public static methods
20+
11. public methods
21+
12. protected static methods
22+
13. protected methods
23+
14. private static methods
24+
15. private methods
25+
26+
## Internal classes
27+
16. public static classes
28+
17. public classes
29+
18. protected static classes
30+
19. protected classes
31+
20. private static classes
32+
21. private classes

0 commit comments

Comments
 (0)