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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodDeclaration.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/MethodDeclaration.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodDeclaration.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodDeclaration.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>MethodDeclaration</code> represent a method declaration.
+ * Instances of the class {@code MethodDeclaration} represent a method declaration.
*
* <pre>
* methodDeclaration ::=
@@ -33,25 +33,25 @@
*/
public class MethodDeclaration extends TypeMember {
/**
- * The token representing the 'abstract' or 'static' keyword, or <code>null</code> if neither
- * modifier was specified.
+ * The token representing the 'abstract' or 'static' keyword, or {@code null} if neither modifier
+ * was specified.
*/
private Token modifierKeyword;
/**
- * The return type of the method, or <code>null</code> if no return type was declared.
+ * The return type of the method, or {@code null} if no return type was declared.
*/
private TypeName returnType;
/**
- * The token representing the 'get' or 'set' keyword, or <code>null</code> if this is a method
+ * The token representing the 'get' or 'set' keyword, or {@code null} if this is a method
* declaration rather than a property declaration.
*/
private Token propertyKeyword;
/**
- * The token representing the 'operator' keyword, or <code>null</code> if this method does not
- * declare an operator.
+ * The token representing the 'operator' keyword, or {@code null} if this method does not declare
+ * an operator.
*/
private Token operatorKeyword;
@@ -138,8 +138,8 @@
}
/**
- * Return the token representing the 'abstract' or 'static' keyword, or <code>null</code> if
- * neither modifier was specified.
+ * Return the token representing the 'abstract' or 'static' keyword, or {@code null} if neither
+ * modifier was specified.
*
* @return the token representing the 'abstract' or 'static' keyword
*/
@@ -157,8 +157,8 @@
}
/**
- * Return the token representing the 'operator' keyword, or <code>null</code> if this method does
- * not declare an operator.
+ * Return the token representing the 'operator' keyword, or {@code null} if this method does not
+ * declare an operator.
*
* @return the token representing the 'operator' keyword
*/
@@ -176,8 +176,8 @@
}
/**
- * Return the token representing the 'get' or 'set' keyword, or <code>null</code> if this is a
- * method declaration rather than a property declaration.
+ * Return the token representing the 'get' or 'set' keyword, or {@code null} if this is a method
+ * declaration rather than a property declaration.
*
* @return the token representing the 'get' or 'set' keyword
*/
@@ -186,7 +186,7 @@
}
/**
- * Return the return type of the method, or <code>null</code> if no return type was declared.
+ * Return the return type of the method, or {@code null} if no return type was declared.
*
* @return the return type of the method
*/

Powered by Google App Engine
This is Rietveld 408576698