Refactoring - Extract Method, Large Class

This commit is contained in:
2025-05-25 18:57:16 +02:00
parent 757e51f1db
commit 087b132362
3 changed files with 35 additions and 26 deletions

View File

@ -2,11 +2,7 @@ package fabrik.simulator.pic16f84.interfaces;
public interface FrontendControllerInterface extends PICComponentInterface {
void sleep();
void wakeUpFromSleep();
boolean isSleeping();
void stopRunFromBackend(String watchdogTimer);
}