Commit 1884b3e3 authored by Julian Zobel's avatar Julian Zobel
Browse files

Docu changes in UniqueID, was denoted as double but is long

parent 8960549a
...@@ -20,13 +20,11 @@ ...@@ -20,13 +20,11 @@
package de.tudarmstadt.maki.simonstrator.api.common; package de.tudarmstadt.maki.simonstrator.api.common;
/** /**
* An ID. The concept of these IDs is as follows: they are SOLELY a container * An ID. The concept of these IDs is as follows: they are SOLELY a container
* for a double representation of the given ID. All arithmetic operations that * for a LONG representation of the given ID. All arithmetic operations that can
* can be executed on top of such an ID have to be implemented in an ID-Space, * be executed on top of such an ID have to be implemented in an ID-Space, which
* which might, thus, be overlay-specific. A UniqueID is NEVER overlay-specific! * might, thus, be overlay-specific. A UniqueID is NEVER overlay-specific!
* *
* This concept eases the creation of globally unified workload apps and * This concept eases the creation of globally unified workload apps and
* evaluation setups, where new IDs need to be guessed or created from within * evaluation setups, where new IDs need to be guessed or created from within
...@@ -34,7 +32,8 @@ package de.tudarmstadt.maki.simonstrator.api.common; ...@@ -34,7 +32,8 @@ package de.tudarmstadt.maki.simonstrator.api.common;
* IDSpace. * IDSpace.
* *
* @author Bjoern Richerzhagen * @author Bjoern Richerzhagen
* @version 1.0, 06/18/2011 * @author Julian Zobel
* @version 1.1, 28.09.2017
*/ */
public interface UniqueID extends Transmitable, Comparable<UniqueID> { public interface UniqueID extends Transmitable, Comparable<UniqueID> {
...@@ -46,5 +45,4 @@ public interface UniqueID extends Transmitable, Comparable<UniqueID> { ...@@ -46,5 +45,4 @@ public interface UniqueID extends Transmitable, Comparable<UniqueID> {
public long value(); public long value();
public String valueAsString(); public String valueAsString();
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment