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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResultKind.java

Issue 473733003: Output javadoc for enumerated values; suppress empty javadoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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.server/src/com/google/dart/server/generated/types/SearchResultKind.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResultKind.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResultKind.java
index 04754891f94bfe1fd53ba856b37aea3c9fcc2b02..4136b408d5f9fe405208e13282992f636160a7bb 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResultKind.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/SearchResultKind.java
@@ -23,16 +23,34 @@ package com.google.dart.server.generated.types;
*/
public class SearchResultKind {
+ /**
+ * The declaration of an element.
+ */
public static final String DECLARATION = "DECLARATION";
+ /**
+ * The invocation of a function or method.
+ */
public static final String INVOCATION = "INVOCATION";
+ /**
+ * A reference to a field, parameter or variable where it is being read.
+ */
public static final String READ = "READ";
+ /**
+ * A reference to a field, parameter or variable where it is being read and written.
+ */
public static final String READ_WRITE = "READ_WRITE";
+ /**
+ * A reference to an element.
+ */
public static final String REFERENCE = "REFERENCE";
+ /**
+ * A reference to a field, parameter or variable where it is being written.
+ */
public static final String WRITE = "WRITE";
}

Powered by Google App Engine
This is Rietveld 408576698