Up
Authors
- Manuel Guesdon (
mguesdon@orange-concept.com)
-
Date: Generated at 2025-12-01
Copyright: (C) 2004 Free Software Foundation, Inc.
- Declared in:
- WebObjects/GSWTemporaryElement.h
Availability: OpenStep
Temporary element which will be converted to a
dynamic element
GSWTemporaryElement declares 4 Instance Variables
- (
GSWElement*)
_elementWithDeclaration: (
GSWDeclaration*)declaration
name: (
NSString*)name
properties: (
NSDictionary*)properties
template: (
GSWElement*)template
languages: (
NSArray*)languages;
Availability: OpenStep
Returns real dynamic element using
declaration May raise exception if element
can't be created
Warning the
underscore at the start of the name
of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
Returns real dynamic
element using declaration May raise
exception if element can't be created
- (void)
addChildElement: (
GSWElement*)element;
Availability: OpenStep
adds element to children
- (
GSWElement*)
dynamicElementWithDeclarations: (
NSDictionary*)declarations
languages: (
NSArray*)languages;
Availability: OpenStep
Returns real dynamic element usinf
declarations to find element type Raise an
exception if element name is not found or if no
declaration is found for that element
Returns real dynamic element using
declarations to find element type Raise an
exception if element name is not found or if no
declaration is found for that element
- (
NSString*)
name;
Availability: OpenStep
Return Element Name, taken from properties
nil if none is found
- (
GSWElement*)
template;
Availability: OpenStep
Create a GSWElement representing child elements tree
- (
NSString*)
templateInfo;
Availability: OpenStep
Returns template information
Instance Variables for GSWTemporaryElement Class
@protected NSMutableArray*
_children;
Availability: OpenStep
Children
Warning the underscore at
the start of the name of this instance variable
indicates that, even though it is not technically
private, it is intended for internal use
within the package, and you should not use the
variable in other code.
@protected GSWTemporaryElement*
_parent;
Availability: OpenStep
Parent tag (not retained)
Warning
the underscore at the start of the name of this
instance variable indicates that, even though it
is not technically private, it is intended for
internal use within the package, and you should
not use the variable in other code.
@protected NSDictionary*
_properties;
Availability: OpenStep
Tag properties
Warning the underscore
at the start of the name of this instance variable
indicates that, even though it is not technically
private, it is intended for internal use
within the package, and you should not use the
variable in other code.
@protected NSString*
_templateInfo;
Availability: OpenStep
Parser/Template information (tag
position,....)
Warning the
underscore at the start of the name of this
instance variable indicates that, even though it
is not technically private, it is intended for
internal use within the package, and you should
not use the variable in other code.
Up