Skip to content

Commit

Permalink
Fixes issue eclipse-vorto#1213
Browse files Browse the repository at this point in the history
  • Loading branch information
Scriptkiddi committed Dec 10, 2018
1 parent cbc2b06 commit aead18c
Show file tree
Hide file tree
Showing 2 changed files with 436 additions and 434 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
*/
package org.eclipse.vorto.model;

public class Dictionary implements IReferenceType {
public class DictionaryType implements IReferenceType {

private IReferenceType key;
private IReferenceType value;
private String type = "dictionary";

public Dictionary(IReferenceType key, IReferenceType value) {
public DictionaryType(IReferenceType key, IReferenceType value) {
this.key = key;
this.value = value;
}

protected Dictionary() {}
protected DictionaryType() {}

public IReferenceType getKey() {
return key;
Expand Down Expand Up @@ -51,7 +51,7 @@ public void setType(String type) {

@Override
public String toString() {
return "Dictionary [key=" + key + ", value=" + value + "]";
return "DictionaryType [key=" + key + ", value=" + value + "]";
}


Expand Down
Loading

0 comments on commit aead18c

Please sign in to comment.