summaryrefslogtreecommitdiffstats
path: root/Frameworks/LiPlugin/LiInspectorView.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/LiPlugin/LiInspectorView.m')
-rw-r--r--Frameworks/LiPlugin/LiInspectorView.m96
1 files changed, 96 insertions, 0 deletions
diff --git a/Frameworks/LiPlugin/LiInspectorView.m b/Frameworks/LiPlugin/LiInspectorView.m
new file mode 100644
index 0000000..c5279cd
--- /dev/null
+++ b/Frameworks/LiPlugin/LiInspectorView.m
@@ -0,0 +1,96 @@
+//
+// LiInspectorView.m
+// Liaison
+//
+// Created by Brian Cully on Wed May 21 2003.
+// Copyright (c) 2003 Brian Cully. All rights reserved.
+//
+
+#import "LiInspectorView.h"
+
+@implementation LiInspectorView
+@synthesize theImage;
+@synthesize theView;
+@synthesize theIdentifier;
+@synthesize theName;
+@end
+
+@implementation LiInspectorView (Accessors)
+- (id)identifier
+{
+ return theIdentifier;
+}
+
+- (void)setIdentifier: (id)anIdentifier
+{
+ [anIdentifier retain];
+ [theIdentifier release];
+ theIdentifier = anIdentifier;
+}
+
+- (NSString *)name
+{
+ return theName;
+}
+
+- (void)setName: (NSString *)aName
+{
+ [aName retain];
+ [theName release];
+ theName = aName;
+}
+
+- (NSImage *)image
+{
+ return theImage;
+}
+
+- (void)setImage: (NSImage *)anImage
+{
+ [anImage retain];
+ [theImage release];
+ theImage = anImage;
+}
+
+- (NSView *)view
+{
+ return theView;
+}
+
+- (void)setView: (NSView *)aView
+{
+ [aView retain];
+ [theView release];
+ theView = aView;
+}
+
+- (BOOL)isHorizontallyResizable
+{
+ return theViewIsHorizontallyResizable;
+}
+
+- (void)setIsHorizontallyResizable: (BOOL)resizable
+{
+ theViewIsHorizontallyResizable = resizable;
+}
+
+- (BOOL)isVerticallyResizable
+{
+ return theViewisVerticallyResizable;
+}
+
+- (void)setIsVerticallyResizable: (BOOL)resizable
+{
+ theViewisVerticallyResizable = resizable;
+}
+
+- (NSSize)viewSize
+{
+ return theViewSize;
+}
+
+- (void)setViewSize: (NSSize)aSize
+{
+ theViewSize = aSize;
+}
+@end