OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015, the Dart project authors. | 2 * Copyright (c) 2015, the Dart project authors. |
3 * | 3 * |
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except | 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except |
5 * in compliance with the License. You may obtain a copy of the License at | 5 * in compliance with the License. You may obtain a copy of the License at |
6 * | 6 * |
7 * http://www.eclipse.org/legal/epl-v10.html | 7 * http://www.eclipse.org/legal/epl-v10.html |
8 * | 8 * |
9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License | 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License |
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express | 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 * path to a directory on the filesystem. | 265 * path to a directory on the filesystem. |
266 * | 266 * |
267 * @param files A table mapping the files whose content has changed to a descr
iption of the content | 267 * @param files A table mapping the files whose content has changed to a descr
iption of the content |
268 * change. | 268 * change. |
269 */ | 269 */ |
270 public void analysis_updateContent(Map<String, Object> files, UpdateContentCon
sumer consumer); | 270 public void analysis_updateContent(Map<String, Object> files, UpdateContentCon
sumer consumer); |
271 | 271 |
272 /** | 272 /** |
273 * {@code analysis.updateOptions} | 273 * {@code analysis.updateOptions} |
274 * | 274 * |
275 * Deprecated: all of the options can be set by users in an analysis options f
ile. | 275 * @deprecated: all of the options can be set by users in an analysis options
file. |
276 * | 276 * |
277 * Update the options controlling analysis based on the given set of options.
Any options that are | 277 * Update the options controlling analysis based on the given set of options.
Any options that are |
278 * not included in the analysis options will not be changed. If there are opti
ons in the analysis | 278 * not included in the analysis options will not be changed. If there are opti
ons in the analysis |
279 * options that are not valid, they will be silently ignored. | 279 * options that are not valid, they will be silently ignored. |
280 * | 280 * |
281 * @param options The options that are to be used to control analysis. | 281 * @param options The options that are to be used to control analysis. |
282 */ | 282 */ |
283 public void analysis_updateOptions(AnalysisOptions options); | 283 public void analysis_updateOptions(AnalysisOptions options); |
284 | 284 |
285 /** | 285 /** |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 * | 476 * |
477 * @param id The identifier of the execution context in which the URI is to be
mapped. | 477 * @param id The identifier of the execution context in which the URI is to be
mapped. |
478 * @param file The path of the file to be mapped into a URI. | 478 * @param file The path of the file to be mapped into a URI. |
479 * @param uri The URI to be mapped into a file path. | 479 * @param uri The URI to be mapped into a file path. |
480 */ | 480 */ |
481 public void execution_mapUri(String id, String file, String uri, MapUriConsume
r consumer); | 481 public void execution_mapUri(String id, String file, String uri, MapUriConsume
r consumer); |
482 | 482 |
483 /** | 483 /** |
484 * {@code execution.setSubscriptions} | 484 * {@code execution.setSubscriptions} |
485 * | 485 * |
486 * Deprecated: the analysis server no longer fires LAUNCH_DATA events. | 486 * @deprecated: the analysis server no longer fires LAUNCH_DATA events. |
487 * | 487 * |
488 * Subscribe for services. All previous subscriptions are replaced by the give
n set of services. | 488 * Subscribe for services. All previous subscriptions are replaced by the give
n set of services. |
489 * | 489 * |
490 * It is an error if any of the elements in the list are not valid services. I
f there is an error, | 490 * It is an error if any of the elements in the list are not valid services. I
f there is an error, |
491 * then the current subscriptions will remain unchanged. | 491 * then the current subscriptions will remain unchanged. |
492 * | 492 * |
493 * @param subscriptions A list of the services being subscribed to. | 493 * @param subscriptions A list of the services being subscribed to. |
494 */ | 494 */ |
495 public void execution_setSubscriptions(List<String> subscriptions); | 495 public void execution_setSubscriptions(List<String> subscriptions); |
496 | 496 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 * the response to this request has been sent. | 602 * the response to this request has been sent. |
603 */ | 603 */ |
604 public void server_shutdown(); | 604 public void server_shutdown(); |
605 | 605 |
606 /** | 606 /** |
607 * Start the analysis server. | 607 * Start the analysis server. |
608 */ | 608 */ |
609 public void start() throws Exception; | 609 public void start() throws Exception; |
610 | 610 |
611 } | 611 } |
OLD | NEW |