Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6233c945c76f1fc0f1139bbb242a84cd0ba33589 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*******************************************************************************
 * Copyright (c) 2015 Willink Transformations and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     E.D.Willink - initial API and implementation
 *******************************************************************************/
package org.eclipse.qvtd.examples.qvtrelation.modelmorf;

public class ModelEntry {
	private String variable;
	private String file;
	private String variableRef;
	private String deltaFile;
	private boolean bound  = false;
	private boolean delta = false;
	public String getVariable() {
		return variable;
	}
	public void setVariable(String variable) {
		this.variable = variable;
	}
	public String getFile() {
		return file;
	}
	public void setFile(String file) {
		this.file = file;
		setBound(false);
	}
	public String getVariableRef() {
		return variableRef;
	}
	public void setVariableRef(String variableRef) {
		this.variableRef = variableRef;
		setBound(true);
	}
	public String getDeltaFile() {
		return deltaFile;
	}
	public void setDeltaFile(String deltaFile) {
		this.deltaFile = deltaFile;
		setDelta(true);
	}
	public boolean isBound() {
		return bound;
	}
	public void setBound(boolean bound) {
		this.bound = bound;
	}
	public boolean hasDelta() {
		return delta;
	}
	public void setDelta(boolean delta) {
		this.delta = delta;
	}
	
	
	
}

Back to the top