a whole bunch of stuff
[ephemerata.git] / symboljunky / src / kezvh / symboljunky / RepresentationType.java
blob43a80394454102d89e6d31cf59ec0b1f13fa31ca
1 /**
3 */
4 package kezvh.symboljunky;
6 /**
7 * @author afflux
9 */
10 public final class RepresentationType {
11 private final long representationTypeId;
12 private final String representationTypeName;
14 /**
15 * @param representationTypeId
16 * @param representationTypeName
18 public RepresentationType(long representationTypeId, String representationTypeName) {
19 super();
20 this.representationTypeId = representationTypeId;
21 this.representationTypeName = representationTypeName;
24 /**
25 * @return the representationTypeId
27 public long getRepresentationTypeId() {
28 return this.representationTypeId;
30 /**
31 * @return the representationTypeName
33 public String getRepresentationTypeName() {
34 return this.representationTypeName;