summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java
blob: e7bf054859d72399b8605cee6cd1bc9979165596 (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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*******************************************************************************
 * Copyright (c) 2010 Intel Corporation.
 * 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:
 * Intel - initial API and implementation
 *******************************************************************************/
package org.yocto.sdk.remotetools;

public class YoctoBspElement {
	private String metadataLoc;
	private String buildLoc;
	private String bspName;
	private String bspOutLoc;
	private String karch;
	private String qarch;
	private boolean validPropertiesFile;

	public YoctoBspElement()
	{
		this.metadataLoc = "";
		this.buildLoc = "";
		this.bspName = "";
		this.bspOutLoc = "";
		this.karch = "";
		this.qarch = "";
		this.validPropertiesFile = false;
	}

	public String getMetadataLoc() {
		return metadataLoc;
	}
	
	public void setMetadataLoc(String value) {
		metadataLoc = value;
	}
	
	public String getBuildLoc() {
		return buildLoc;
	}
	
	public void setBuildLoc(String value) {
		buildLoc = value;
	}
	
	public String getBspName() {
		return bspName;
	}
	
	public void setBspName(String value) {
		this.bspName = value;
	}
	
	public String getBspOutLoc() {
		return bspOutLoc;
	}
	
	public void setBspOutLoc(String value) {
		this.bspOutLoc = value;
	}
	
	public String getKarch() {
		return karch;
	}
	
	public void setKarch(String value) {
		this.karch = value;
	}
	
	public String getQarch() {
		return qarch;
	}
	
	public void setQarch(String value) {
		this.qarch = value;
	}
	
	public boolean getValidPropertiesFile() {
		return validPropertiesFile;
	}
	
	public void setValidPropertiesFile(boolean value) {
		this.validPropertiesFile = value;
	}
}