OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="UTF-8"/> | 4 <meta charset="UTF-8"/> |
5 <title>Analysis Server Plugin API Specification</title> | 5 <title>Analysis Server Plugin API Specification</title> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <h1>Analysis Server Plugin API Specification</h1> | 8 <h1>Analysis Server Plugin API Specification</h1> |
9 <h1 style="color:#999999">Version | 9 <h1 style="color:#999999">Version |
10 <version>1.0.0-alpha.0</version> | 10 <version>1.0.0-alpha.0</version> |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 <field name="events"> | 230 <field name="events"> |
231 <list> | 231 <list> |
232 <ref>WatchEvent</ref> | 232 <ref>WatchEvent</ref> |
233 </list> | 233 </list> |
234 <p> | 234 <p> |
235 The watch events that the plugin should handle. | 235 The watch events that the plugin should handle. |
236 </p> | 236 </p> |
237 </field> | 237 </field> |
238 </params> | 238 </params> |
239 </request> | 239 </request> |
240 <request method="reanalyze"> | |
241 <p> | |
242 Used to force the re-analysis of everything contained in the specified | |
243 context roots. This should cause all previously computed analysis results | |
244 to be discarded and recomputed, and should cause all subscribed | |
245 notifications to be re-sent. | |
246 </p> | |
247 <params> | |
248 <field name="roots" optional="true"> | |
249 <list> | |
250 <ref>FilePath</ref> | |
251 </list> | |
252 <p> | |
253 A list of the context roots that are to be re-analyzed. | |
254 </p> | |
255 <p> | |
256 If no context roots are provided, then all current context roots | |
257 should be re-analyzed. | |
258 </p> | |
259 </field> | |
260 </params> | |
261 </request> | |
262 <request method="setContextRoots"> | 240 <request method="setContextRoots"> |
263 <p> | 241 <p> |
264 Set the list of context roots that should be analyzed. | 242 Set the list of context roots that should be analyzed. |
265 </p> | 243 </p> |
266 <params> | 244 <params> |
267 <field name="roots"> | 245 <field name="roots"> |
268 <list> | 246 <list> |
269 <ref>ContextRoot</ref> | 247 <ref>ContextRoot</ref> |
270 </list> | 248 </list> |
271 <p> | 249 <p> |
(...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1562 The name that the element should have after the refactoring. | 1540 The name that the element should have after the refactoring. |
1563 </p> | 1541 </p> |
1564 </field> | 1542 </field> |
1565 </options> | 1543 </options> |
1566 </refactoring> | 1544 </refactoring> |
1567 </refactorings> | 1545 </refactorings> |
1568 <h2 class="domain"><a name="index">Index</a></h2> | 1546 <h2 class="domain"><a name="index">Index</a></h2> |
1569 <index></index> | 1547 <index></index> |
1570 </body> | 1548 </body> |
1571 </html> | 1549 </html> |
OLD | NEW |