| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.java
|
| ===================================================================
|
| --- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.java (revision 9355)
|
| +++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.java (working copy)
|
| @@ -16,7 +16,7 @@
|
| import com.google.dart.engine.scanner.Token;
|
|
|
| /**
|
| - * Instances of the class <code>SuperConstructorInvocation</code> represent the invocation of a
|
| + * Instances of the class {@code SuperConstructorInvocation} represent the invocation of a
|
| * superclass' constructor from within a constructor's initialization list.
|
| *
|
| * <pre>
|
| @@ -32,13 +32,13 @@
|
|
|
| /**
|
| * The token for the period before the name of the constructor that is being invoked, or
|
| - * <code>null</code> if the unnamed constructor is being invoked.
|
| + * {@code null} if the unnamed constructor is being invoked.
|
| */
|
| private Token period;
|
|
|
| /**
|
| - * The name of the constructor that is being invoked, or <code>null</code> if the unnamed
|
| - * constructor is being invoked.
|
| + * The name of the constructor that is being invoked, or {@code null} if the unnamed constructor
|
| + * is being invoked.
|
| */
|
| private SimpleIdentifier constructorName;
|
|
|
| @@ -91,7 +91,7 @@
|
| }
|
|
|
| /**
|
| - * Return the name of the constructor that is being invoked, or <code>null</code> if the unnamed
|
| + * Return the name of the constructor that is being invoked, or {@code null} if the unnamed
|
| * constructor is being invoked.
|
| *
|
| * @return the name of the constructor that is being invoked
|
| @@ -116,7 +116,7 @@
|
|
|
| /**
|
| * Return the token for the period before the name of the constructor that is being invoked, or
|
| - * <code>null</code> if the unnamed constructor is being invoked.
|
| + * {@code null} if the unnamed constructor is being invoked.
|
| *
|
| * @return the token for the period before the name of the constructor that is being invoked
|
| */
|
|
|