summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java')
-rw-r--r--plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java b/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java
new file mode 100644
index 0000000..e7bf054
--- /dev/null
+++ b/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/YoctoBspElement.java
@@ -0,0 +1,88 @@
1/*******************************************************************************
2 * Copyright (c) 2010 Intel Corporation.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Intel - initial API and implementation
10 *******************************************************************************/
11package org.yocto.sdk.remotetools;
12
13public class YoctoBspElement {
14 private String metadataLoc;
15 private String buildLoc;
16 private String bspName;
17 private String bspOutLoc;
18 private String karch;
19 private String qarch;
20 private boolean validPropertiesFile;
21
22 public YoctoBspElement()
23 {
24 this.metadataLoc = "";
25 this.buildLoc = "";
26 this.bspName = "";
27 this.bspOutLoc = "";
28 this.karch = "";
29 this.qarch = "";
30 this.validPropertiesFile = false;
31 }
32
33 public String getMetadataLoc() {
34 return metadataLoc;
35 }
36
37 public void setMetadataLoc(String value) {
38 metadataLoc = value;
39 }
40
41 public String getBuildLoc() {
42 return buildLoc;
43 }
44
45 public void setBuildLoc(String value) {
46 buildLoc = value;
47 }
48
49 public String getBspName() {
50 return bspName;
51 }
52
53 public void setBspName(String value) {
54 this.bspName = value;
55 }
56
57 public String getBspOutLoc() {
58 return bspOutLoc;
59 }
60
61 public void setBspOutLoc(String value) {
62 this.bspOutLoc = value;
63 }
64
65 public String getKarch() {
66 return karch;
67 }
68
69 public void setKarch(String value) {
70 this.karch = value;
71 }
72
73 public String getQarch() {
74 return qarch;
75 }
76
77 public void setQarch(String value) {
78 this.qarch = value;
79 }
80
81 public boolean getValidPropertiesFile() {
82 return validPropertiesFile;
83 }
84
85 public void setValidPropertiesFile(boolean value) {
86 this.validPropertiesFile = value;
87 }
88}