Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
43 lines (34 loc) · 1.14 KB

File metadata and controls

43 lines (34 loc) · 1.14 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package PamController;
import java.awt.AWTEvent;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.InputEvent;
public abstract class RawInputControlledUnit extends PamControlledUnit {
public static final int RAW_INPUT_UNKNOWN = 0;
public static final int RAW_INPUT_FILEARCHIVE = 1;
public static final int RAW_INPUT_REALTIME = 2;
public RawInputControlledUnit(String unitType, String unitName) {
super(unitType, unitName);
}
/**
* Type of data input, which can be one of RAW_INPUT_UNKNOWN (0),
* RAW_INPUT_FILEARCHIVE (1), or RAW_INPUT_REALTIME (2)
* @return
*/
public abstract int getRawInputType();
/**
* Start button extra actions. e.g. to process from first file, continue from current position, etc.
* @param component The start button
* @param e input event, might be a MouseEvent or a ActionEvent from a button
*/
public void startButtonXtraActions(Component component, AWTEvent e) {
}
/**
* Get a tooltip for the default action of the start button. Return
* null for default "start processing" tip.
* @return
*/
public String getStartButtonToolTip() {
return null;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.