| 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
|
|
|