pbdom_processinginstruction.sru 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. $PBExportHeader$pbdom_processinginstruction.sru
  2. forward
  3. global type pbdom_processinginstruction from pbdom_object
  4. end type
  5. end forward
  6. global type pbdom_processinginstruction from pbdom_object native "PBDOM.pbx"
  7. public function string GetName()
  8. public function string GetText()
  9. public function boolean GetContent(ref pbdom_object pbdom_object_array[])
  10. public function pbdom_object AddContent(pbdom_object pbdom_object_ref)
  11. public function pbdom_object InsertContent(pbdom_object pbdom_object_new, pbdom_object pbdom_object_ref)
  12. public function boolean RemoveContent(pbdom_object pbdom_object_ref)
  13. public function pbdom_object SetContent(pbdom_object pbdom_object_array[])
  14. public function boolean SetName(string strName)
  15. public function pbdom_object Clone(boolean bDeep)
  16. public function boolean Equals(pbdom_object pbdom_object_ref)
  17. public function long GetObjectClass()
  18. public function string GetObjectClassString()
  19. public function pbdom_document GetOwnerDocumentObject()
  20. public function pbdom_object Detach()
  21. public function pbdom_object GetParentObject()
  22. public function boolean HasChildren()
  23. public function string GetTextNormalize()
  24. public function string GetTextTrim()
  25. public function boolean IsAncestorObjectOf(pbdom_object pbdom_object_ref)
  26. public function pbdom_object SetParentObject(pbdom_object pbdom_object_ref)
  27. public function string GetData()
  28. public function boolean GetNames(ref string name_array[])
  29. public function string GetTarget()
  30. public function string GetValue(string strName)
  31. public function boolean RemoveValue(string strName)
  32. public function pbdom_processinginstruction SetData(string strData)
  33. public function pbdom_processinginstruction SetValue(string strName, string strValue)
  34. end type
  35. global pbdom_processinginstruction pbdom_processinginstruction
  36. on pbdom_processinginstruction.create
  37. call super::create
  38. TriggerEvent( this, "constructor" )
  39. end on
  40. on pbdom_processinginstruction.destroy
  41. TriggerEvent( this, "destructor" )
  42. call super::destroy
  43. end on