mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 04:01:16 +00:00
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:
parent
e3f1088205
commit
46cb322add
2 changed files with 6 additions and 17 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue