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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InterfaceDeclaration.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/InterfaceDeclaration.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InterfaceDeclaration.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InterfaceDeclaration.java (working copy)
@@ -18,8 +18,7 @@
import java.util.List;
/**
- * Instances of the class <code>InterfaceDeclaration</code> represent the declaration of an
- * interface.
+ * Instances of the class {@code InterfaceDeclaration} represent the declaration of an interface.
*
* <pre>
* interfaceDeclaration ::=
@@ -31,13 +30,13 @@
*/
public class InterfaceDeclaration extends TypeDeclaration {
/**
- * The extends clause for the interface, or <code>null</code> if the interface does not extend any
+ * The extends clause for the interface, or {@code null} if the interface does not extend any
* other interfaces.
*/
private InterfaceExtendsClause interfaceExtendsClause;
/**
- * The default clause for the interface, or <code>null</code> if the interface does not define a
+ * The default clause for the interface, or {@code null} if the interface does not define a
* default class.
*/
private DefaultClause defaultClause;
@@ -75,8 +74,8 @@
}
/**
- * Return the default clause for the interface, or <code>null</code> if the interface does not
- * define a default class.
+ * Return the default clause for the interface, or {@code null} if the interface does not define a
+ * default class.
*
* @return the default clause for the interface
*/
@@ -85,8 +84,8 @@
}
/**
- * Return the extends clause for the interface, or <code>null</code> if the interface does not
- * extend any other interfaces.
+ * Return the extends clause for the interface, or {@code null} if the interface does not extend
+ * any other interfaces.
*
* @return the extends clause for this interface
*/

Powered by Google App Engine
This is Rietveld 408576698