/packages/cocoaint/src/webkit/DOMProcessingInstruction.inc
Pascal | 53 lines | 10 code | 14 blank | 29 comment | 0 complexity | c7cf19b97369ed0f14186363e42be920 MD5 | raw file
Possible License(s): LGPL-2.0, LGPL-2.1, LGPL-3.0
1{ Parsed from Webkit.framework DOMProcessingInstruction.h } 2 3{$ifdef TYPES} 4{$ifndef DOMPROCESSINGINSTRUCTION_PAS_T} 5{$define DOMPROCESSINGINSTRUCTION_PAS_T} 6 7{$endif} 8{$endif} 9 10{$ifdef RECORDS} 11{$ifndef DOMPROCESSINGINSTRUCTION_PAS_R} 12{$define DOMPROCESSINGINSTRUCTION_PAS_R} 13 14{$endif} 15{$endif} 16 17{$ifdef FUNCTIONS} 18{$ifndef DOMPROCESSINGINSTRUCTION_PAS_F} 19{$define DOMPROCESSINGINSTRUCTION_PAS_F} 20 21{$endif} 22{$endif} 23 24{$ifdef EXTERNAL_SYMBOLS} 25{$ifndef DOMPROCESSINGINSTRUCTION_PAS_S} 26{$define DOMPROCESSINGINSTRUCTION_PAS_S} 27 28{$endif} 29{$endif} 30 31{$ifdef FORWARD} 32 DOMProcessingInstruction = objcclass; 33 DOMProcessingInstructionPointer = ^DOMProcessingInstruction; 34 DOMProcessingInstructionPtr = DOMProcessingInstructionPointer; 35 36{$endif} 37 38{$ifdef CLASSES} 39{$ifndef DOMPROCESSINGINSTRUCTION_PAS_C} 40{$define DOMPROCESSINGINSTRUCTION_PAS_C} 41 42{ DOMProcessingInstruction } 43 DOMProcessingInstruction = objcclass external (DOMNode) 44 45 public 46 function target: NSString; message 'target'; 47 procedure setData (newValue: NSString); message 'setData:'; 48 function data: NSString; message 'data'; 49 function sheet: DOMStyleSheet; message 'sheet'; 50 end; 51 52{$endif} 53{$endif}