| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 * @deprecated | 625 * @deprecated |
| 626 */ | 626 */ |
| 627 public void execution_setSubscriptions(List<String> subscriptions); | 627 public void execution_setSubscriptions(List<String> subscriptions); |
| 628 | 628 |
| 629 /** | 629 /** |
| 630 * Return {@code true} if the socket is open. | 630 * Return {@code true} if the socket is open. |
| 631 */ | 631 */ |
| 632 public boolean isSocketOpen(); | 632 public boolean isSocketOpen(); |
| 633 | 633 |
| 634 /** | 634 /** |
| 635 * {@code kythe.getKytheEntries} |
| 636 * |
| 637 * Return the list of KytheEntry objects for some file, given the current stat
e of the file system |
| 638 * populated by "analysis.updateContent". |
| 639 * |
| 640 * @param file The file containing the code for which the Kythe Entry objects
are being requested. |
| 641 */ |
| 642 public void kythe_getKytheEntries(String file, GetKytheEntriesConsumer consume
r); |
| 643 |
| 644 /** |
| 635 * Remove the given listener from the list of listeners that will receive noti
fication when new | 645 * Remove the given listener from the list of listeners that will receive noti
fication when new |
| 636 * analysis results become available. | 646 * analysis results become available. |
| 637 * | 647 * |
| 638 * @param listener the listener to be removed | 648 * @param listener the listener to be removed |
| 639 */ | 649 */ |
| 640 public void removeAnalysisServerListener(AnalysisServerListener listener); | 650 public void removeAnalysisServerListener(AnalysisServerListener listener); |
| 641 | 651 |
| 642 /** | 652 /** |
| 643 * {@code search.findElementReferences} | 653 * {@code search.findElementReferences} |
| 644 * | 654 * |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 * the response to this request has been sent. | 744 * the response to this request has been sent. |
| 735 */ | 745 */ |
| 736 public void server_shutdown(); | 746 public void server_shutdown(); |
| 737 | 747 |
| 738 /** | 748 /** |
| 739 * Start the analysis server. | 749 * Start the analysis server. |
| 740 */ | 750 */ |
| 741 public void start() throws Exception; | 751 public void start() throws Exception; |
| 742 | 752 |
| 743 } | 753 } |
| OLD | NEW |