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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java

Issue 10816034: Basic 'Quick Fix' support and one fix as example/test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java
index 43f137536d438409c1b32fe0d4e032d2b08ee53f..451ea9a6b7b04bc196256399ff78743e02f5918d 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/problem/Problem.java
@@ -13,6 +13,8 @@
*/
package com.google.dart.tools.core.problem;
+import com.google.dart.compiler.ErrorCode;
+
/**
* The interface <code>Problem</code> defines the behavior of objects that represent a Dart problem,
* as detected by the compiler or some of the underlying technology reusing the compiler. A problem
@@ -42,7 +44,7 @@ public interface Problem {
*
* @return the problem id
*/
- public int getID();
+ public ErrorCode getID();
/**
* Return a localized, human-readable message string which describes the problem.

Powered by Google App Engine
This is Rietveld 408576698