pbdom_entityreference.sru 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. $PBExportHeader$pbdom_entityreference.sru
  2. forward
  3. global type pbdom_entityreference from pbdom_object
  4. end type
  5. end forward
  6. global type pbdom_entityreference 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. end type
  28. global pbdom_entityreference pbdom_entityreference
  29. on pbdom_entityreference.create
  30. call super::create
  31. TriggerEvent( this, "constructor" )
  32. end on
  33. on pbdom_entityreference.destroy
  34. TriggerEvent( this, "destructor" )
  35. call super::destroy
  36. end on