< prev index next >

src/java.base/share/classes/java/nio/file/attribute/BasicFileAttributeView.java

Print this page

        

*** 39,53 **** * file's time attributes. * * <p> Where dynamic access to file attributes is required, the attributes * supported by this attribute view have the following names and types: * <blockquote> ! * <table border="1" cellpadding="8" summary="Supported attributes"> * <tr> * <th> Name </th> * <th> Type </th> * </tr> * <tr> * <td> "lastModifiedTime" </td> * <td> {@link FileTime} </td> * </tr> * <tr> --- 39,57 ---- * file's time attributes. * * <p> Where dynamic access to file attributes is required, the attributes * supported by this attribute view have the following names and types: * <blockquote> ! * <table class="striped"> ! * <caption style="display:none">Supported attributes</caption> ! * <thead> * <tr> * <th> Name </th> * <th> Type </th> * </tr> + * </thead> + * <tbody> * <tr> * <td> "lastModifiedTime" </td> * <td> {@link FileTime} </td> * </tr> * <tr>
*** 80,89 **** --- 84,94 ---- * </tr> * <tr> * <td> "fileKey" </td> * <td> {@link Object} </td> * </tr> + * </tbody> * </table> * </blockquote> * * <p> The {@link java.nio.file.Files#getAttribute getAttribute} method may be * used to read any of these attributes as if by invoking the {@link
< prev index next >