summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/BSPAction.java
blob: 171f181f56825c76aa3f214c47224a684351f4b2 (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
package org.yocto.sdk.remotetools.wizards.bsp;

/**
 * Stores a list of items from the output of a background thread and the error message if something went wrong
 * @author ioana.grigoropol
 *
 */
public class BSPAction {
	private String[] items;
	private String message;

	BSPAction(String[] items, String message){
		this.setItems(items);
		this.setMessage(message);
	}

	public String[] getItems() {
		return items;
	}

	public void setItems(String[] items) {
		this.items = items;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}
}