OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014, the Dart project authors. | 2 * Copyright (c) 2014, 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 public void search_findTopLevelDeclarations(String pattern, FindTopLevelDeclar
ationsConsumer consumer); | 511 public void search_findTopLevelDeclarations(String pattern, FindTopLevelDeclar
ationsConsumer consumer); |
512 | 512 |
513 /** | 513 /** |
514 * {@code search.getTypeHierarchy} | 514 * {@code search.getTypeHierarchy} |
515 * | 515 * |
516 * Return the type hierarchy of the class declared or referenced at the given
location. | 516 * Return the type hierarchy of the class declared or referenced at the given
location. |
517 * | 517 * |
518 * @param file The file containing the declaration or reference to the type fo
r which a hierarchy | 518 * @param file The file containing the declaration or reference to the type fo
r which a hierarchy |
519 * is being requested. | 519 * is being requested. |
520 * @param offset The offset of the name of the type within the file. | 520 * @param offset The offset of the name of the type within the file. |
| 521 * @param superOnly True if the client is only requesting superclasses and int
erfaces hierarchy. |
521 */ | 522 */ |
522 public void search_getTypeHierarchy(String file, int offset, GetTypeHierarchyC
onsumer consumer); | 523 public void search_getTypeHierarchy(String file, int offset, boolean superOnly
, GetTypeHierarchyConsumer consumer); |
523 | 524 |
524 /** | 525 /** |
525 * {@code server.getVersion} | 526 * {@code server.getVersion} |
526 * | 527 * |
527 * Return the version number of the analysis server. | 528 * Return the version number of the analysis server. |
528 */ | 529 */ |
529 public void server_getVersion(GetVersionConsumer consumer); | 530 public void server_getVersion(GetVersionConsumer consumer); |
530 | 531 |
531 /** | 532 /** |
532 * {@code server.setSubscriptions} | 533 * {@code server.setSubscriptions} |
(...skipping 16 matching lines...) Expand all Loading... |
549 * the response to this request has been sent. | 550 * the response to this request has been sent. |
550 */ | 551 */ |
551 public void server_shutdown(); | 552 public void server_shutdown(); |
552 | 553 |
553 /** | 554 /** |
554 * Start the analysis server. | 555 * Start the analysis server. |
555 */ | 556 */ |
556 public void start() throws Exception; | 557 public void start() throws Exception; |
557 | 558 |
558 } | 559 } |
OLD | NEW |