fixed maven repository URL
[sixth-data.git] / src / main / java / eu / svjatoslav / sixth / data / model / EntryClass.java
1 /*
2  * Sixth Data. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  *
5 */
6
7 package eu.svjatoslav.sixth.data.model;
8
9 public class EntryClass {
10
11     /**
12      * <pre>
13      * Datastore entries are instances of particular class.
14      *
15      * Class declares:
16      *     data fields
17      *
18      *     methods
19      *          method is a tree like (code branches) data structure
20      *          of commands and user comments.
21      *
22      * Class in actually a declaration of an multidimensional array.
23      * With every field acting as a dimension.
24      *
25      *
26      * Field properties:
27      *     * mandatory.
28      *
29      *     * data type:
30      *          Instance <of Type>
31      *
32      *          enumeration
33      *
34      *          float
35      *          integer
36      *          string
37      *          byte[]
38      *
39      *          Collection <of Type>
40      *
41      * </pre>
42      */
43
44 }