diff --git a/jdk/src/share/classes/java/nio/file/attribute/package-info.java b/jdk/src/share/classes/java/nio/file/attribute/package-info.java index 222b7251f00..b0e87b64c76 100644 --- a/jdk/src/share/classes/java/nio/file/attribute/package-info.java +++ b/jdk/src/share/classes/java/nio/file/attribute/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -27,7 +27,7 @@ * Interfaces and classes providing access to file and file system attributes. * *
- *
+ * Attribute views
Description
* Attribute views Description * {@link java.nio.file.attribute.AttributeView} *Can read or update non-opaque values associated with objects in a file system * {@link java.nio.file.attribute.FileAttributeView} @@ -38,7 +38,7 @@ *Can read or update POSIX defined file attributes - * {@link java.nio.file.attribute.DosFileAttributeView} *Can read or update FAT file attributes  {@link java.nio.file.attribute.FileOwnerAttributeView} + ** {@link java.nio.file.attribute.FileOwnerAttributeView} *Can read or update the owner of a file @@ -86,14 +86,14 @@ * * {@link java.nio.file.attribute.AclFileAttributeView} *Can read or update Access Control Lists * - *
- The {@link java.nio.file.attribute.UserPrincipal} and + *
- The {@link java.nio.file.attribute.UserPrincipal} and * {@link java.nio.file.attribute.GroupPrincipal} interfaces represent an * identity or group identity.
* - *- The {@link java.nio.file.attribute.UserPrincipalLookupService} + *
- The {@link java.nio.file.attribute.UserPrincipalLookupService} * interface defines methods to lookup user or group principals.
* - *- The {@link java.nio.file.attribute.FileAttribute} interface + *
- The {@link java.nio.file.attribute.FileAttribute} interface * represents the value of an attribute for cases where the attribute value is * required to be set atomically when creating an object in the file system.
* diff --git a/jdk/src/share/classes/java/util/function/package-info.java b/jdk/src/share/classes/java/util/function/package-info.java index 36eda330d19..690b76dc3b7 100644 --- a/jdk/src/share/classes/java/util/function/package-info.java +++ b/jdk/src/share/classes/java/util/function/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -30,13 +30,13 @@ * adapted. Functional interfaces can provide a target type in multiple contexts, * such as assignment context, method invocation, or cast context: * - *- * Predicate<String> p = String::isEmpty; + ** *{@code + * Predicate+ * }p = String::isEmpty; * * stream.filter(e -> e.getSize() > 10)... * * stream.map((ToIntFunction) e -> e.getSize())... - * The interfaces in this package are functional interfaces used by the JDK, * and are available to be used by user code as well. While they do not identify