/ODataConnectorForMySQL/EDMXGenerator/IEDMXGenerator.php

http://odatamysqlphpconnect.codeplex.com · PHP · 122 lines · 19 code · 11 blank · 92 comment · 0 complexity · ba74072567bb0dac271502cfde2256e2 MD5 · raw file

  1. <?php
  2. /**
  3. * Contains ISchemaReader class is interface of Schema Reader.
  4. *
  5. * PHP version 5.3
  6. *
  7. * @category ODataConnectorForMySQL
  8. * @package ODataConnectorForMySQL_EDMXGenerator
  9. * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>
  10. * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)
  11. * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)
  12. * @version SVN: 1.0
  13. * @link
  14. *
  15. */
  16. namespace ODataConnectorForMySQL\EDMXGenerator;
  17. use ODataConnectorForMySQL\ObjectModel\Association;
  18. use ODataConnectorForMySQL\ObjectModel\AssociationSet;
  19. /**
  20. * OData writer interface.
  21. *
  22. * @category ODataConnectorForMySQL
  23. * @package ODataConnectorForMySQL_EDMXGenerator
  24. * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>
  25. * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)
  26. * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)
  27. * @version Release: 1.0
  28. * @link
  29. */
  30. interface IEDMXGenerator
  31. {
  32. /**
  33. * Start Generating EDMX file.
  34. *
  35. * @return EDMX xml object.
  36. */
  37. public function generateEDMX();
  38. /**
  39. * Write Tables in EDMX format from object model.
  40. *
  41. * @return void
  42. */
  43. public function writeEntityType();
  44. /**
  45. * Write primary keys for Tables in EDMX format from object model.
  46. *
  47. * @param array<Key> &$entityKeys array of key object of object model.
  48. *
  49. * @return void
  50. */
  51. public function writeKey(&$entityKeys);
  52. /**
  53. * Write properties of Tables in EDMX format from object model.
  54. *
  55. * @param array<Property> &$properties array of property object of object model.
  56. *
  57. * @return void
  58. */
  59. public function writeProperty(&$properties);
  60. /**
  61. * Writes navigation Property of the Entity type.
  62. *
  63. * @param array<NavigationProperty> &$navigationProperties array of navigation
  64. * property of object
  65. * model.
  66. *
  67. * @return void
  68. */
  69. public function writeNavigationProperty(&$navigationProperties);
  70. /**
  71. * Write Associations between entity types for the given database.
  72. *
  73. * @return void
  74. */
  75. public function writeAssociations();
  76. /**
  77. * Write Associations between entity types for the given database.
  78. *
  79. * @param Association &$association Association object of object model.
  80. *
  81. * @return void
  82. */
  83. public function writeAssociation(Association &$association);
  84. /**
  85. * Write Entity Container for given database.
  86. *
  87. * @return void
  88. */
  89. public function writeEntityContainer();
  90. /**
  91. * Write Entity Set for given database.
  92. *
  93. * @return void
  94. */
  95. public function writeEntitySet();
  96. /**
  97. * Write Association Sets for given database.
  98. *
  99. * @return void
  100. */
  101. public function writeAssociationSets();
  102. /**
  103. * Write Association Set for each association.
  104. *
  105. * @param AssociationSet &$associationSet Association set object of Object model.
  106. *
  107. * @return void
  108. */
  109. public function writeAssociationSet(AssociationSet &$associationSet);
  110. }
  111. ?>