4 package kezvh
.symboljunky
;
10 public final class RepresentationType
{
11 private final long representationTypeId
;
12 private final String representationTypeName
;
15 * @param representationTypeId
16 * @param representationTypeName
18 public RepresentationType(long representationTypeId
, String representationTypeName
) {
20 this.representationTypeId
= representationTypeId
;
21 this.representationTypeName
= representationTypeName
;
25 * @return the representationTypeId
27 public long getRepresentationTypeId() {
28 return this.representationTypeId
;
31 * @return the representationTypeName
33 public String
getRepresentationTypeName() {
34 return this.representationTypeName
;