-
Notifications
You must be signed in to change notification settings - Fork 5
/
conventions.txt
54 lines (37 loc) · 1.41 KB
/
conventions.txt
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
Header Clase:
/**
* Descripcion
* @author Rodrigo Troncoso
* @version 0.1
* @since 2014-04-22
*/
Header Funcion:
/**
* Create an empty container.
*/
Inicio de variables en clases:
private int mNombreVariable;
Inicio de variables en parametros:
public void funcion(int pParametro1, int pParametro2, ...);
Template Clases:
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================