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

Side by Side Diff: pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java

Issue 2719853004: Deprecate the analysis.updateOptions request (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
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
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.
276 *
275 * 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
276 * 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
277 * options that are not valid, they will be silently ignored. 279 * options that are not valid, they will be silently ignored.
278 * 280 *
279 * @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.
280 */ 282 */
281 public void analysis_updateOptions(AnalysisOptions options); 283 public void analysis_updateOptions(AnalysisOptions options);
282 284
283 /** 285 /**
284 * {@code completion.getSuggestions} 286 * {@code completion.getSuggestions}
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 * the response to this request has been sent. 588 * the response to this request has been sent.
587 */ 589 */
588 public void server_shutdown(); 590 public void server_shutdown();
589 591
590 /** 592 /**
591 * Start the analysis server. 593 * Start the analysis server.
592 */ 594 */
593 public void start() throws Exception; 595 public void start() throws Exception;
594 596
595 } 597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698