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