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">Version <version>1.6.2</version></h1> | 8 <h1 style="color:#999999">Version <version>1.6.2</version></h1> |
jwren
2015/06/01 16:28:26
increment.
Brian Wilkerson
2015/06/01 16:40:20
Updated to 1.7.0.
| |
9 <p> | 9 <p> |
10 This document contains a specification of the API provided by the | 10 This document contains a specification of the API provided by the |
11 analysis server. The API in this document is currently under | 11 analysis server. The API in this document is currently under |
12 development. Changes to the API will be accompanied by an update to the | 12 development. Changes to the API will be accompanied by an update to the |
13 protocol version number according to the principles of semantic | 13 protocol version number according to the principles of semantic |
14 versioning <a href="http://semver.org/">http://semver.org/</a>. | 14 versioning <a href="http://semver.org/">http://semver.org/</a>. |
15 </p> | 15 </p> |
16 <h2>Overview</h2> | 16 <h2>Overview</h2> |
17 <p> | 17 <p> |
18 The analysis server API is a bi-directional client-server | 18 The analysis server API is a bi-directional client-server |
(...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1355 <!-- | 1355 <!-- |
1356 <field name="selectionOnly" optional="true"> | 1356 <field name="selectionOnly" optional="true"> |
1357 <ref>bool</ref> | 1357 <ref>bool</ref> |
1358 <p> | 1358 <p> |
1359 True if the code to be formatted should be limited to the selected | 1359 True if the code to be formatted should be limited to the selected |
1360 text (or the smallest portion of text that encloses the selected | 1360 text (or the smallest portion of text that encloses the selected |
1361 text that can be formatted). | 1361 text that can be formatted). |
1362 </p> | 1362 </p> |
1363 </field> | 1363 </field> |
1364 --> | 1364 --> |
1365 <field name="lineLength" optional="true"> | |
1366 <ref>int</ref> | |
1367 <p> | |
1368 The line length to be used by the formatter. | |
1369 </p> | |
1370 </field> | |
1365 </params> | 1371 </params> |
1366 <result> | 1372 <result> |
1367 <field name="edits"> | 1373 <field name="edits"> |
1368 <list><ref>SourceEdit</ref></list> | 1374 <list><ref>SourceEdit</ref></list> |
1369 <p> | 1375 <p> |
1370 The edit(s) to be applied in order to format the code. The list | 1376 The edit(s) to be applied in order to format the code. The list |
1371 will be empty if the code was already formatted (there are no | 1377 will be empty if the code was already formatted (there are no |
1372 changes). | 1378 changes). |
1373 </p> | 1379 </p> |
1374 </field> | 1380 </field> |
(...skipping 2537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3912 <h2>Errors</h2> | 3918 <h2>Errors</h2> |
3913 <p> | 3919 <p> |
3914 This section contains a list of all of the errors that are | 3920 This section contains a list of all of the errors that are |
3915 produced by the server and the data that is returned with each. | 3921 produced by the server and the data that is returned with each. |
3916 </p> | 3922 </p> |
3917 <p> | 3923 <p> |
3918 TBD | 3924 TBD |
3919 </p> | 3925 </p> |
3920 </body> | 3926 </body> |
3921 </html> | 3927 </html> |
OLD | NEW |