summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/OutputCollectorThread.java
blob: df5fba569053824c3dff6d1ebf839e32e2dce4d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.yocto.sdk.remotetools.wizards.bsp;

/**
 * BSPThread that returns all the output lines of the process execution
 * @author ioana.grigoropol
 *
 */
public class OutputCollectorThread extends BSPThread{

	public OutputCollectorThread(String command) {
		super(command);
	}

	@Override
	protected String[] processLine(String line) {
		return new String[]{SUCCESS, line};
	}

}