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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ClassDeclaration.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/ClassDeclaration.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ClassDeclaration.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ClassDeclaration.java (working copy)
@@ -18,7 +18,7 @@
import java.util.List;
/**
- * Instances of the class <code>ClassDeclaration</code> represent the declaration of a class.
+ * Instances of the class {@code ClassDeclaration} represent the declaration of a class.
*
* <pre>
* classDeclaration ::=
@@ -30,18 +30,17 @@
*/
public class ClassDeclaration extends TypeDeclaration {
/**
- * The 'abstract' keyword, or <code>null</code> if the keyword was absent.
+ * The 'abstract' keyword, or {@code null} if the keyword was absent.
*/
private Token abstractKeyword;
/**
- * The extends clause for the class, or <code>null</code> if the class does not extend any other
- * class.
+ * The extends clause for the class, or {@code null} if the class does not extend any other class.
*/
private ClassExtendsClause classExtendsClause;
/**
- * The implements clause for the class, or <code>null</code> if the class does not implement any
+ * The implements clause for the class, or {@code null} if the class does not implement any
* interfaces.
*/
private ImplementsClause implementsClause;
@@ -56,7 +55,7 @@
* Initialize a newly created class declaration.
*
* @param comment the documentation comment associated with this member
- * @param abstractKeyword the 'abstract' keyword, or <code>null</code> if the keyword was absent
+ * @param abstractKeyword the 'abstract' keyword, or {@code null} if the keyword was absent
* @param keyword the token representing the 'class' keyword
* @param name the name of the class being declared
* @param typeParameters the type parameters for the class
@@ -82,7 +81,7 @@
}
/**
- * Return the 'abstract' keyword, or <code>null</code> if the keyword was absent.
+ * Return the 'abstract' keyword, or {@code null} if the keyword was absent.
*
* @return the 'abstract' keyword
*/
@@ -91,7 +90,7 @@
}
/**
- * Return the extends clause for this class, or <code>null</code> if the class does not extend any
+ * Return the extends clause for this class, or {@code null} if the class does not extend any
* other class.
*
* @return the extends clause for this class
@@ -101,8 +100,8 @@
}
/**
- * Return the implements clause for the class, or <code>null</code> if the class does not
- * implement any interfaces.
+ * Return the implements clause for the class, or {@code null} if the class does not implement any
+ * interfaces.
*
* @return the implements clause for the class
*/

Powered by Google App Engine
This is Rietveld 408576698