Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
90 Kevin 1
package ioio.debugger;
2
 
3
import android.view.View;
4
 
5
public interface ViewWidget {
6
	public void stopThread();
7
	public void startThread();
8
	public void clearData();
9
	public void setStopSignal();
10
	public void resetStopSignal();
11
 
12
	public void sendDataHistory();
13
 
14
	public View getView();
15
	public Thread getThread();
16
	public void setPin(int pin);
17
	public int getPin();
18
}