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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypeName.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/TypeName.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypeName.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypeName.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>TypeName</code> represent the name of a type, which can optionally
+ * Instances of the class {@code TypeName} represent the name of a type, which can optionally
* include type arguments.
*
* <pre>
@@ -31,8 +31,7 @@
private Identifier name;
/**
- * The type arguments associated with the type, or <code>null</code> if there are no type
- * arguments.
+ * The type arguments associated with the type, or {@code null} if there are no type arguments.
*/
private TypeArgumentList typeArguments;
@@ -46,8 +45,8 @@
* Initialize a newly created type name.
*
* @param name the name of the type
- * @param typeArguments the type arguments associated with the type, or <code>null</code> if there
- * are no type arguments
+ * @param typeArguments the type arguments associated with the type, or {@code null} if there are
+ * no type arguments
*/
public TypeName(Identifier name, TypeArgumentList typeArguments) {
this.name = becomeParentOf(name);
@@ -82,7 +81,7 @@
}
/**
- * Return the type arguments associated with the type, or <code>null</code> if there are no type
+ * Return the type arguments associated with the type, or {@code null} if there are no type
* arguments.
*
* @return the type arguments associated with the type

Powered by Google App Engine
This is Rietveld 408576698