--- old/src/share/classes/java/security/PolicySpi.java 2013-06-28 10:31:50.146376833 -0700 +++ new/src/share/classes/java/security/PolicySpi.java 2013-06-28 10:31:49.990376838 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -28,15 +28,15 @@ /** * This class defines the Service Provider Interface (SPI) - * for the Policy class. + * for the {@code Policy} class. * All the abstract methods in this class must be implemented by each * service provider who wishes to supply a Policy implementation. * *

Subclass implementations of this abstract class must provide - * a public constructor that takes a Policy.Parameters + * a public constructor that takes a {@code Policy.Parameters} * object as an input parameter. This constructor also must throw * an IllegalArgumentException if it does not understand the - * Policy.Parameters input. + * {@code Policy.Parameters} input. * * * @since 1.6 @@ -59,7 +59,7 @@ /** * Refreshes/reloads the policy configuration. The behavior of this method - * depends on the implementation. For example, calling refresh + * depends on the implementation. For example, calling {@code refresh} * on a file-based policy will cause the file to be re-read. * *

The default implementation of this method does nothing.