Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/analysis/model/WorkspaceAnalysisServerListener.java

Issue 242513008: Outline view for information from analysis server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 // TODO(scheglov) Analysis Server 50 // TODO(scheglov) Analysis Server
51 } 51 }
52 52
53 @Override 53 @Override
54 public void computedNavigation(String contextId, Source source, NavigationRegi on[] targets) { 54 public void computedNavigation(String contextId, Source source, NavigationRegi on[] targets) {
55 dataImpl.internalComputedNavigation(contextId, source, targets); 55 dataImpl.internalComputedNavigation(contextId, source, targets);
56 } 56 }
57 57
58 @Override 58 @Override
59 public void computedOutline(String contextId, Source source, Outline outline) { 59 public void computedOutline(String contextId, Source source, Outline outline) {
60 // TODO(scheglov) Analysis Server 60 dataImpl.internalComputedOutline(contextId, source, outline);
61 } 61 }
62 62
63 /** 63 /**
64 * Deletes all the data associated with the given context. 64 * Deletes all the data associated with the given context.
65 */ 65 */
66 public void internalDeleteContext(String contextId) { 66 public void internalDeleteContext(String contextId) {
67 dataImpl.internalDeleteContext(contextId); 67 dataImpl.internalDeleteContext(contextId);
68 } 68 }
69 69
70 @Override 70 @Override
71 public void onServerError(AnalysisServerError error) { 71 public void onServerError(AnalysisServerError error) {
72 // TODO(scheglov) Analysis Server 72 // TODO(scheglov) Analysis Server
73 } 73 }
74 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698