/[classpath]/classpath/java/security/cert/CollectionCertStoreParameters.java
ViewVC logotype

Diff of /classpath/java/security/cert/CollectionCertStoreParameters.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by gnu_andrew, Tue Aug 2 20:12:26 2005 UTC revision 1.1.2.2 by tromey, Fri Nov 25 22:18:19 2005 UTC
# Line 51  import java.util.Collections; Line 51  import java.util.Collections;
51   * collection may be changed at any time.   * collection may be changed at any time.
52   *   *
53   * @see CertStore   * @see CertStore
54     * @since 1.4
55   */   */
56  public class CollectionCertStoreParameters implements CertStoreParameters  public class CollectionCertStoreParameters implements CertStoreParameters
57  {  {
# Line 81  public class CollectionCertStoreParamete Line 82  public class CollectionCertStoreParamete
82     * @param collection The collection.     * @param collection The collection.
83     * @throws NullPointerException If <i>collection</i> is null.     * @throws NullPointerException If <i>collection</i> is null.
84     */     */
85    public CollectionCertStoreParameters(Collection collection)    public CollectionCertStoreParameters(Collection<?> collection)
86    {    {
87      if (collection == null)      if (collection == null)
88        throw new NullPointerException();        throw new NullPointerException();
# Line 103  public class CollectionCertStoreParamete Line 104  public class CollectionCertStoreParamete
104     *     *
105     * @return The collection.     * @return The collection.
106     */     */
107    public Collection getCollection()    public Collection<?> getCollection()
108    {    {
109      return collection;      return collection;
110    }    }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26