mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
* GSWeb.framework/GSWHTMLStaticGroup.m/.h:
o added +elementWithContentElements: git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18905 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0329406ce3
commit
b33b81dd49
2 changed files with 11 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
/** GSWHTMLStaticGroup.h - <title>GSWeb: Class GSWHTMLStaticGroup</title>
|
/** GSWHTMLStaticGroup.h - <title>GSWeb: Class GSWHTMLStaticGroup</title>
|
||||||
|
|
||||||
Copyright (C) 1999-2002 Free Software Foundation, Inc.
|
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Feb 1999
|
Date: Feb 1999
|
||||||
|
|
||||||
$Revision$
|
$Revision$
|
||||||
$Date$
|
$Date$
|
||||||
|
@ -37,6 +37,7 @@
|
||||||
{
|
{
|
||||||
NSString* _documentTypeString;
|
NSString* _documentTypeString;
|
||||||
}
|
}
|
||||||
|
+(GSWHTMLStaticGroup*)elementWithContentElements:(NSArray*)elements;
|
||||||
-(id)initWithContentElements:(NSArray*)elements;
|
-(id)initWithContentElements:(NSArray*)elements;
|
||||||
-(void)setDocumentTypeString:(NSString *)documentType;
|
-(void)setDocumentTypeString:(NSString *)documentType;
|
||||||
|
|
||||||
|
@ -44,6 +45,7 @@
|
||||||
inContext:(GSWContext*)context;
|
inContext:(GSWContext*)context;
|
||||||
|
|
||||||
-(void)dealloc;
|
-(void)dealloc;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/** GSWHTMLStaticGroup.m - <title>GSWeb: Class GSWHTMLStaticGroup</title>
|
/** GSWHTMLStaticGroup.m - <title>GSWeb: Class GSWHTMLStaticGroup</title>
|
||||||
|
|
||||||
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Feb 1999
|
Date: Feb 1999
|
||||||
|
@ -35,6 +35,12 @@ RCS_ID("$Id$")
|
||||||
|
|
||||||
//====================================================================
|
//====================================================================
|
||||||
@implementation GSWHTMLStaticGroup
|
@implementation GSWHTMLStaticGroup
|
||||||
|
|
||||||
|
+(GSWHTMLStaticGroup*)elementWithContentElements:(NSArray*)elements
|
||||||
|
{
|
||||||
|
return [[[self alloc]initWithContentElements:elements]autorelease];
|
||||||
|
};
|
||||||
|
|
||||||
-(id)initWithContentElements:(NSArray*)elements
|
-(id)initWithContentElements:(NSArray*)elements
|
||||||
{
|
{
|
||||||
//OK
|
//OK
|
||||||
|
|
Loading…
Reference in a new issue