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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/VariableDeclarationList.java

Issue 10700082: Comment clean-up (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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.engine/src/com/google/dart/engine/ast/VariableDeclarationList.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/VariableDeclarationList.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/VariableDeclarationList.java (working copy)
@@ -18,8 +18,8 @@
import java.util.List;
/**
- * Instances of the class <code>VariableDeclarationList</code> represent the declaration of one or
- * more variables of the same type.
+ * Instances of the class {@code VariableDeclarationList} represent the declaration of one or more
+ * variables of the same type.
*
* <pre>
* variableDeclarationList ::=
@@ -34,13 +34,13 @@
*/
public class VariableDeclarationList extends ASTNode {
/**
- * The token representing the 'final', 'const' or 'var' keyword, or <code>null</code> if no
- * keyword was included.
+ * The token representing the 'final', 'const' or 'var' keyword, or {@code null} if no keyword was
+ * included.
*/
private Token keyword;
/**
- * The type of the variables being declared, or <code>null</code> if no type was provided.
+ * The type of the variables being declared, or {@code null} if no type was provided.
*/
private TypeName type;
@@ -90,7 +90,7 @@
}
/**
- * Return the token representing the 'final', 'const' or 'var' keyword, or <code>null</code> if no
+ * Return the token representing the 'final', 'const' or 'var' keyword, or {@code null} if no
* keyword was included.
*
* @return the token representing the 'final', 'const' or 'var' keyword
@@ -100,7 +100,7 @@
}
/**
- * Return the type of the variables being declared, or <code>null</code> if no type was provided.
+ * Return the type of the variables being declared, or {@code null} if no type was provided.
*
* @return the type of the variables being declared
*/

Powered by Google App Engine
This is Rietveld 408576698