1 /*
2     EKInspector - Abstract inspector class
3 
4     Project: Environment Kit
5 
6     Copyright (C) 2005 Stefan Urbanek
7 
8     Author : Stefan Urbanek
9     Created: 2005-01-27
10     License: GNU LGPL 2.1
11 */
12 
13 #import <Foundation/NSObject.h>
14 
15 @class NSView;
16 @class NSWindow;
17 @class EKInspectorPanel;
18 
19 @interface EKInspector:NSObject
20 {
21     EKInspectorPanel *owner;
22     NSWindow         *_window;
23     NSView           *view;
24     id                target;
25 }
26 + inspector;
27 - (NSView *)view;
28 
29 - (void)setTarget:(id)newTarget;
30 - (id)target;
31 
32 - (void)setOwner:(id)anObject;
33 - (id)owner;
34 
35 - (void)targetChanged;
36 - (NSString *)title;
37 - (NSString *)nibName;
38 
39 @end
40 /* BEGIN Generated by DevelKit */
41 @interface EKInspector (DKGeneratedMethods)
42 @end
43 /* END Generated by DevelKit */
44