o removed projectName (now inherit from GSWDeployedBundle)

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18112 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2003-11-23 18:00:48 +00:00
parent e3f1088205
commit 46cb322add
2 changed files with 6 additions and 17 deletions

View file

@ -36,25 +36,21 @@
//==================================================================== //====================================================================
@interface GSWProjectBundle : GSWDeployedBundle @interface GSWProjectBundle : GSWDeployedBundle
{ {
NSString* _projectName;
NSDictionary* _subprojects; NSDictionary* _subprojects;
NSDictionary* _pbProjectDictionary; NSDictionary* _pbProjectDictionary;
}; };
-(id)initWithPath:(NSString*)aPath; -(id)initWithPath:(NSString*)aPath;
-(void)dealloc;
-(NSString*)description;
-(NSArray*)lockedPathsForResourcesOfType:(id)aType; -(NSArray*)lockedPathsForResourcesOfType:(id)aType;
-(NSArray*)lockedPathsForResourcesInSubprojectsOfType:(id)aType; -(NSArray*)lockedPathsForResourcesInSubprojectsOfType:(id)aType;
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName -(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguage:(NSString*)aLanguage; language:(NSString*)aLanguage;
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName -(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguages:(NSArray*)someLanguages; languages:(NSArray*)someLanguages;
-(NSDictionary*)subprojects; -(NSDictionary*)subprojects;
-(BOOL)isFramework; -(BOOL)isFramework;
-(GSWDeployedBundle*)projectBundle; -(GSWDeployedBundle*)projectBundle;
-(NSString*)projectPath; -(NSString*)projectPath;
-(NSString*)projectName;
-(NSDictionary*)_pbProjectDictionary; -(NSDictionary*)_pbProjectDictionary;
@end @end

View file

@ -54,7 +54,6 @@ RCS_ID("$Id$")
//-------------------------------------------------------------------- //--------------------------------------------------------------------
-(void)dealloc -(void)dealloc
{ {
DESTROY(_projectName);
DESTROY(_subprojects); DESTROY(_subprojects);
DESTROY(_pbProjectDictionary); DESTROY(_pbProjectDictionary);
[super dealloc]; [super dealloc];
@ -89,20 +88,20 @@ RCS_ID("$Id$")
//-------------------------------------------------------------------- //--------------------------------------------------------------------
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName -(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguage:(NSString*)aLanguage language:(NSString*)aLanguage
{ {
LOGObjectFnNotImplemented(); //TODOFN LOGObjectFnNotImplemented(); //TODOFN
return [super lockedRelativePathForResourceNamed:aName return [super lockedRelativePathForResourceNamed:aName
forLanguage:aLanguage]; language:aLanguage];
}; };
//-------------------------------------------------------------------- //--------------------------------------------------------------------
-(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName -(NSString*)lockedRelativePathForResourceNamed:(NSString*)aName
forLanguages:(NSArray*)someLanguages languages:(NSArray*)someLanguages
{ {
LOGObjectFnNotImplemented(); //TODOFN LOGObjectFnNotImplemented(); //TODOFN
return [super lockedRelativePathForResourceNamed:aName return [super lockedRelativePathForResourceNamed:aName
forLanguages:someLanguages]; languages:someLanguages];
}; };
//-------------------------------------------------------------------- //--------------------------------------------------------------------
@ -132,12 +131,6 @@ RCS_ID("$Id$")
return nil; return nil;
}; };
//--------------------------------------------------------------------
-(NSString*)projectName
{
return _projectName;
};
//-------------------------------------------------------------------- //--------------------------------------------------------------------
-(NSDictionary*)_pbProjectDictionary -(NSDictionary*)_pbProjectDictionary
{ {