| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <meta charset="UTF-8"/> | 3 <meta charset="UTF-8"/> |
| 4 <title>Analysis Server API Specification</title> | 4 <title>Analysis Server API Specification</title> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <h1>Analysis Server API Specification</h1> | 7 <h1>Analysis Server API Specification</h1> |
| 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1
> | 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1
> |
| 9 <p> | 9 <p> |
| 10 This document contains a specification of the API provided by | 10 This document contains a specification of the API provided by |
| (...skipping 2881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2892 <p> | 2892 <p> |
| 2893 A description of a set of changes to a single file. | 2893 A description of a set of changes to a single file. |
| 2894 </p> | 2894 </p> |
| 2895 <object> | 2895 <object> |
| 2896 <field name="file"> | 2896 <field name="file"> |
| 2897 <ref>FilePath</ref> | 2897 <ref>FilePath</ref> |
| 2898 <p> | 2898 <p> |
| 2899 The file containing the code to be modified. | 2899 The file containing the code to be modified. |
| 2900 </p> | 2900 </p> |
| 2901 </field> | 2901 </field> |
| 2902 <field name="fileStamp"> |
| 2903 <ref>long</ref> |
| 2904 <p> |
| 2905 The modification stamp of the file at the moment when the change |
| 2906 was created, in milliseconds since the "Unix epoch". Will be -1 if |
| 2907 the file did not exist and should be created. The client may use |
| 2908 this field to make sure that the file was not changed since then, |
| 2909 so it is safe to apply the change. |
| 2910 </p> |
| 2911 </field> |
| 2902 <field name="edits"> | 2912 <field name="edits"> |
| 2903 <list><ref>SourceEdit</ref></list> | 2913 <list><ref>SourceEdit</ref></list> |
| 2904 <p> | 2914 <p> |
| 2905 A list of the edits used to effect the change. | 2915 A list of the edits used to effect the change. |
| 2906 </p> | 2916 </p> |
| 2907 </field> | 2917 </field> |
| 2908 </object> | 2918 </object> |
| 2909 </type> | 2919 </type> |
| 2910 <type name="TypeHierarchyItem"> | 2920 <type name="TypeHierarchyItem"> |
| 2911 <p> | 2921 <p> |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3305 <h2>Errors</h2> | 3315 <h2>Errors</h2> |
| 3306 <p> | 3316 <p> |
| 3307 This section contains a list of all of the errors that are | 3317 This section contains a list of all of the errors that are |
| 3308 produced by the server and the data that is returned with each. | 3318 produced by the server and the data that is returned with each. |
| 3309 </p> | 3319 </p> |
| 3310 <p> | 3320 <p> |
| 3311 TBD | 3321 TBD |
| 3312 </p> | 3322 </p> |
| 3313 </body> | 3323 </body> |
| 3314 </html> | 3324 </html> |
| OLD | NEW |