New access methods

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14986 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-11-13 16:00:12 +00:00
parent 14c4427f75
commit 43c5671dd0
4 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-11-13 Adam Fedor <fedor@gnu.org>
* Model/IMLoading.m ([GMModel -objects]): New.
([GMModel -connections]): Idem.
2002-11-12 Adam Fedor <fedor@gnu.org>
* Headers/gnustep/gui/AppKit.h: Add NSDocumentController.

View file

@ -41,6 +41,8 @@
+ (BOOL)loadIMFile:(NSString*)path owner:(id)owner bundle:(NSBundle*)bundle;
- (void)_makeConnections;
- (void)_setObjects:objects connections:connections;
- (NSArray *) objects;
- (NSArray *) connections;
@end
#endif /* _GNUstep_H_IMLoading */

View file

@ -190,6 +190,16 @@ BOOL _fileOwnerDecoded = NO;
return self;
}
- (NSArray *) objects
{
return objects;
}
- (NSArray *) connections
{
return connections;
}
@end /* GMModel */

View file

@ -834,4 +834,4 @@
RootObject = {Connections = "ConnectionArray"; Objects = "ObjectArray"; isa = GMModel; };
TopLevelObjects = (RootObject);
Version = 1;
};
}