updated wireframe and created prototype

This commit is contained in:
Marco Kühn 2021-11-17 15:07:57 +01:00
parent 87e6db6a6b
commit 2d8bdf410c
5 changed files with 13 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -2,7 +2,15 @@
## 1.1 General ## 1.1 General
maximal 80-100 letters in one line maximal 80-100 letters in one line
## 1.2 Arrays ## 1.2 Brackets
Brackets will be used like this:
public void example() {
}
## 1.3 Arrays
String[] array = new String[]{"1", "2", "3", "4"} String[] array = new String[]{"1", "2", "3", "4"}
or or
@ -31,4 +39,7 @@ Constant names are written in UPPER_CASE.
## 2.5 Variable names ## 2.5 Variable names
Variable names are written in lowerCamelCase. Variable names are written in lowerCamelCase.
The names should _ALWAYS_ be describing words. The names should _ALWAYS_ be words that are descriptive.
## 2.6 File names
File names are written in lowerCameCase.