mirror of
https://github.com/JvanKatwijk/javaDab
synced 2018-12-22 06:18:52 +01:00
12 lines
250 B
Java
Executable File
12 lines
250 B
Java
Executable File
|
|
package package_View;
|
|
|
|
public interface viewSignals {
|
|
public void tableSelect_withLeft (String s);
|
|
public void tableSelect_withRight (String s);
|
|
public void gainValue (int gainValue);
|
|
public void reset ();
|
|
public void autogainButton ();
|
|
}
|
|
|