blob: a9ec26a1913be30783cd337aebd26ae626251941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{ Parsed from Foundation.framework NSXMLDTD.h }
{$ifdef TYPES}
{$ifndef NSXMLDTD_PAS_T}
{$define NSXMLDTD_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef NSXMLDTD_PAS_R}
{$define NSXMLDTD_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef NSXMLDTD_PAS_F}
{$define NSXMLDTD_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSXMLDTD_PAS_S}
{$define NSXMLDTD_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
NSXMLDTD = objcclass;
NSXMLDTDPointer = ^NSXMLDTD;
NSXMLDTDPtr = NSXMLDTDPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef NSXMLDTD_PAS_C}
{$define NSXMLDTD_PAS_C}
{ NSXMLDTD }
NSXMLDTD = objcclass external (NSXMLNode)
private
_name: NSString;
_publicID: NSString;
_systemID: NSString;
_children: NSArray;
_childrenHaveMutated: Boolean;
_padding3: array[0..(3)-1] of cuint8;
_entities: NSMutableDictionary;
_elements: NSMutableDictionary;
_notations: NSMutableDictionary;
_attributes: NSMutableDictionary;
_original: NSString;
_modified: Boolean;
_padding2: array[0..(3)-1] of cuint8;
public
function initWithContentsOfURL_options_error(url: NSURL; mask: NSUInteger; error: NSErrorPointer): id; message 'initWithContentsOfURL:options:error:';
function initWithData_options_error(data: NSData; mask: NSUInteger; error: NSErrorPointer): id; message 'initWithData:options:error:';
procedure setPublicID(publicID_: NSString); message 'setPublicID:';
function publicID: NSString; message 'publicID';
procedure setSystemID(systemID_: NSString); message 'setSystemID:';
function systemID: NSString; message 'systemID';
procedure insertChild_atIndex(child: NSXMLNode; index_: NSUInteger); message 'insertChild:atIndex:';
procedure insertChildren_atIndex(children_: NSArray; index_: NSUInteger); message 'insertChildren:atIndex:';
procedure removeChildAtIndex(index_: NSUInteger); message 'removeChildAtIndex:';
procedure setChildren(children_: NSArray); message 'setChildren:';
procedure addChild(child: NSXMLNode); message 'addChild:';
procedure replaceChildAtIndex_withNode(index_: NSUInteger; node: NSXMLNode); message 'replaceChildAtIndex:withNode:';
function entityDeclarationForName(name_: NSString): NSXMLDTDNode; message 'entityDeclarationForName:';
function notationDeclarationForName(name_: NSString): NSXMLDTDNode; message 'notationDeclarationForName:';
function elementDeclarationForName(name_: NSString): NSXMLDTDNode; message 'elementDeclarationForName:';
function attributeDeclarationForName_elementName(name_: NSString; elementName: NSString): NSXMLDTDNode; message 'attributeDeclarationForName:elementName:';
class function predefinedEntityDeclarationForName(name_: NSString): NSXMLDTDNode; message 'predefinedEntityDeclarationForName:';
end;
{$endif}
{$endif}
|