9464cad0f1e2ef874a678024a0a47a1ca71377e6
[sixth-data.git] / src / main / java / eu / svjatoslav / sixth / data / model / IntegerUnit.java
1 /*
2  * Sixth - System for data storage, computation, exploration and interaction.
3  * Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.sixth.data.model;
11
12 public class IntegerUnit implements InformationUnit {
13
14     public final int value;
15
16     public IntegerUnit(final int value) {
17         this.value = value;
18     }
19
20     @Override
21     public int getType() {
22         return 0;
23     }
24
25 }