|
@@ -12,6 +12,7 @@
|
|
|
#import "FLEXGlobalsTableViewControllerEntry.h"
|
|
#import "FLEXGlobalsTableViewControllerEntry.h"
|
|
|
#import "FLEXObjectExplorerFactory.h"
|
|
#import "FLEXObjectExplorerFactory.h"
|
|
|
#import "FLEXObjectExplorerViewController.h"
|
|
#import "FLEXObjectExplorerViewController.h"
|
|
|
|
|
+#import "FLEXNetworkObserver.h"
|
|
|
|
|
|
|
|
@interface FLEXManager () <FLEXWindowEventDelegate, FLEXExplorerViewControllerDelegate>
|
|
@interface FLEXManager () <FLEXWindowEventDelegate, FLEXExplorerViewControllerDelegate>
|
|
|
|
|
|
|
@@ -81,6 +82,16 @@
|
|
|
return self.explorerWindow.isHidden;
|
|
return self.explorerWindow.isHidden;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+- (BOOL)isNetworkDebuggingEnabled
|
|
|
|
|
+{
|
|
|
|
|
+ return [FLEXNetworkObserver isEnabled];
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+- (void)setNetworkDebuggingEnabled:(BOOL)networkDebuggingEnabled
|
|
|
|
|
+{
|
|
|
|
|
+ [FLEXNetworkObserver setEnabled:networkDebuggingEnabled];
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
|
|
|
#pragma mark - FLEXWindowEventDelegate
|
|
#pragma mark - FLEXWindowEventDelegate
|
|
|
|
|
|