summaryrefslogtreecommitdiffstats
path: root/ui-ci-dev/src/main/java/org/openecomp/sdc/uici/tests/datatypes/CanvasElement.java
blob: c23d05ab23887f78e78b7527ef8e102325e18381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.openecomp.sdc.uici.tests.datatypes;

import org.apache.commons.lang3.tuple.ImmutablePair;

public final class CanvasElement {
	private final String uniqueId;
	private ImmutablePair<Integer, Integer> location;
	private String elementName;

	public String getElementName() {
		return elementName;
	}

	public CanvasElement(String uniqueId, String elementName, ImmutablePair<Integer, Integer> location) {
		super();
		this.uniqueId = uniqueId;
		this.location = location;
		this.elementName = elementName;
	}

	public String getUniqueId() {
		return uniqueId;
	}

	public ImmutablePair<Integer, Integer> getLocation() {
		return location;
	}

	public void setLocation(ImmutablePair<Integer, Integer> location) {
		this.location = location;
	}

}