упорядочил папки с кодом.
This commit is contained in:
28
src/Common/UI/Windows/Interface/CallbackWindow.java
Normal file
28
src/Common/UI/Windows/Interface/CallbackWindow.java
Normal file
@@ -0,0 +1,28 @@
|
||||
package Common.UI.Windows.Interface;
|
||||
public interface CallbackWindow extends VisualizerForm {
|
||||
void ShowAccount();
|
||||
void ShowBugReports();
|
||||
void ShowNoBugReports();
|
||||
void ShowSubscribers();
|
||||
void ShowNoSubscribers();
|
||||
void ShowCurrentBugReport();
|
||||
void ShowNoCurrentBugReport();
|
||||
void ShowSubscription();
|
||||
//-
|
||||
default void ShowAll() {
|
||||
ShowAccount();
|
||||
ShowSubscription();
|
||||
ShowBugReports();
|
||||
ShowSubscribers();
|
||||
}
|
||||
String getBugReportDescriptionText();
|
||||
String getBugReportDescriptionAdditionText();
|
||||
String getBugReportCommentText();
|
||||
String getBugReportCommentAdditionText();
|
||||
void ClearBugReportDescriptionAdditionText();
|
||||
void ClearBugReportCommentAdditionText();
|
||||
void FocusRecipients();
|
||||
void SwitchScreen(boolean small);
|
||||
void setUserRights();
|
||||
void setAdminRights();
|
||||
}
|
||||
Reference in New Issue
Block a user