API Changelog: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<!-- | |||
== | ==What's New in Synthesis API Version 10== | ||
* We've added several new methods to the Repository class and organized them into fields named after the object type they apply to. This means that existing methods in the class have also been moved to the appropriate fields. For example, the <code>Repository.GetAllModels()</code> method, which affects model resources, has been renamed to <code>Repository.Model.GetAllModels()</code>; similarly, <code>Repository.ImportBlockSimXMLFile</code> has been renamed to <code>Repository.BlockSim.ImportBlockSimXMLFile</code>, etc. The Version 9 methods still exist so your code is not broken, but they are deprecated and may be removed in future versions of the API. | * We've added several new methods to the Repository class and organized them into fields named after the object type they apply to. This means that existing methods in the class have also been moved to the appropriate fields. For example, the <code>Repository.GetAllModels()</code> method, which affects model resources, has been renamed to <code>Repository.Model.GetAllModels()</code>; similarly, <code>Repository.ImportBlockSimXMLFile</code> has been renamed to <code>Repository.BlockSim.ImportBlockSimXMLFile</code>, etc. The Version 9 methods still exist so your code is not broken, but they are deprecated and may be removed in future versions of the API. | ||
* In Version 9, you had to get all of a single resource (e.g., all models) from a repository before you could update a single one. In the latest version, we've added new methods that allow you to get just a single resource from the repository and update it. | * In Version 9, you had to get all of a single resource (e.g., all models) from a repository before you could update a single one. In the latest version, we've added new methods that allow you to get just a single resource from the repository and update it. | ||
Line 10: | Line 10: | ||
For a list of new classes and enumerations, see [[New Classes and Enumerations]]. | |||
For a list of new methods, properties, events and constants, see [[New Members and Constants]]. | |||
For a list of deprecated, changed or removed members, see [[Deprecated and Removed Members]]. | |||
--> | |||