упорядочил папки с кодом.
This commit is contained in:
60
src/Common/UI/Windows/Interface/FileWindow.java
Normal file
60
src/Common/UI/Windows/Interface/FileWindow.java
Normal file
@@ -0,0 +1,60 @@
|
||||
package Common.UI.Windows.Interface;
|
||||
public interface FileWindow extends VisualizerForm{
|
||||
void ShowText();
|
||||
void ShowLanguage();
|
||||
void ShowType();
|
||||
void ShowStyle();
|
||||
default void ShowProperties() {
|
||||
ShowLanguage();
|
||||
ShowType();
|
||||
ShowStyle();
|
||||
}
|
||||
void ShowMessages();
|
||||
void ShowNoMessages();
|
||||
void ShowLoops();
|
||||
void ShowNoLoops();
|
||||
void ShowGCOV();
|
||||
void ShowNoGCOV();
|
||||
void ShowFunctions();
|
||||
void ShowNoFunctions();
|
||||
void ShowArrays();
|
||||
void ShowNoArrays();
|
||||
void ShowCaretInfo();
|
||||
void FocusMessagesPriority();
|
||||
void ShowFirstError();
|
||||
//-
|
||||
void ShowCompilationOutput();
|
||||
void ShowNoCompilationOutput();
|
||||
void ShowRunOutput();
|
||||
void ShowNoRunOutput();
|
||||
void ShowGCOVLog();
|
||||
void ShowNoGCOVLog();
|
||||
void FocusGCOVLog();
|
||||
SPFEditorInterface getEditor();
|
||||
default void ShowAllAnalyses() {
|
||||
ShowLoops();
|
||||
ShowFunctions();
|
||||
ShowArrays();
|
||||
ShowGCOV();
|
||||
ShowCompilationOutput();
|
||||
ShowRunOutput();
|
||||
}
|
||||
default void ShowNoAnalyses() {
|
||||
ShowNoLoops();
|
||||
ShowNoFunctions();
|
||||
ShowNoArrays();
|
||||
ShowNoGCOV();
|
||||
ShowNoCompilationOutput();
|
||||
ShowNoRunOutput();
|
||||
}
|
||||
void FocusLoops();
|
||||
void FocusFunctions();
|
||||
void FocusArrays();
|
||||
void RefreshTabsNames();
|
||||
void FocusCompilationOut();
|
||||
//--
|
||||
void ShowWarningsCount();
|
||||
void ShowErrorsCount();
|
||||
void ShowNotesCount();
|
||||
void ShowRecommendationsCount();
|
||||
}
|
||||
Reference in New Issue
Block a user