mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
Method renamed.
This commit is contained in:
@@ -57,9 +57,9 @@ public abstract class AbstractConsoleCommunication implements ConsoleCommunicati
|
||||
}
|
||||
|
||||
@Override
|
||||
public void notifyFinished() {
|
||||
public void notifyCommandExecuted() {
|
||||
for (ConsoleCommunicationListener listener: communicationListeners) {
|
||||
listener.executionFinished();
|
||||
listener.commandExecuted();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ public interface ConsoleCommunication {
|
||||
|
||||
void addCommunicationListener(ConsoleCommunicationListener listener);
|
||||
|
||||
void notifyFinished();
|
||||
void notifyCommandExecuted();
|
||||
void notifyInputRequested();
|
||||
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ package com.jetbrains.python.console.pydev;
|
||||
* @author traff
|
||||
*/
|
||||
public interface ConsoleCommunicationListener {
|
||||
void executionFinished();
|
||||
void commandExecuted();
|
||||
void inputRequested();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user