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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/PackageUriResolver.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/source/PackageUriResolver.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/PackageUriResolver.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/PackageUriResolver.java (working copy)
@@ -17,18 +17,18 @@
import java.net.URI;
/**
- * Instances of the class <code>PackageUriResolver</code> resolve <code>package</code> URI's in the
- * context of an application.
+ * Instances of the class {@code PackageUriResolver} resolve {@code package} URI's in the context of
+ * an application.
*/
public class PackageUriResolver extends UriResolver {
/**
* The "packages" directory within the root directory (the directory that contains the
- * <code>.dart</code> file that defines the application).
+ * {@code .dart} file that defines the application).
*/
private File packagesDirectory;
/**
- * The name of the <code>package</code> scheme.
+ * The name of the {@code package} scheme.
*/
private static final String PACKAGE_SCHEME = "package";
@@ -38,18 +38,18 @@
private static final String PACKAGES_DIRECTORY_NAME = "packages";
/**
- * Return <code>true</code> if the given URI is a <code>package</code> URI.
+ * Return {@code true} if the given URI is a {@code package} URI.
*
* @param uri the URI being tested
- * @return <code>true</code> if the given URI is a <code>package</code> URI
+ * @return {@code true} if the given URI is a {@code package} URI
*/
public static boolean isPackageUri(URI uri) {
return uri.getScheme().equals(PACKAGE_SCHEME);
}
/**
- * Initialize a newly created resolver to resolve <code>package</code> URI's relative to the given
- * root directory.
+ * Initialize a newly created resolver to resolve {@code package} URI's relative to the given root
+ * directory.
*
* @param rootDirectory the directory that contains the root of the application
*/

Powered by Google App Engine
This is Rietveld 408576698