--- old/src/share/classes/java/nio/file/attribute/DosFileAttributes.java Wed Jan 26 14:11:30 2011 +++ new/src/share/classes/java/nio/file/attribute/DosFileAttributes.java Wed Jan 26 14:11:29 2011 @@ -29,13 +29,13 @@ * File attributes associated with a file in a file system that supports * legacy "DOS" attributes. * - *

The DOS attributes of a file are retrieved using a {@link - * DosFileAttributeView} by invoking its {@link DosFileAttributeView#readAttributes - * readAttributes} method. + *

Usage Example: + *

+ *    Path file = ...
+ *    DosFileAttributes attrs = Files.readAttributes(file, DosFileAttributes.class);
+ * 
* * @since 1.7 - * - * @see Attributes#readDosFileAttributes */ public interface DosFileAttributes