From 8353158846bee01157b8cdac5d07dd2a736a318c Mon Sep 17 00:00:00 2001 From: "Raif S. Naffah" Date: Sat, 8 Mar 2003 23:48:19 +0000 Subject: formatting + documentation. --- java/security/AlgorithmParameterGenerator.java | 205 +++++++++++++++---------- 1 file changed, 126 insertions(+), 79 deletions(-) (limited to 'java/security/AlgorithmParameterGenerator.java') diff --git a/java/security/AlgorithmParameterGenerator.java b/java/security/AlgorithmParameterGenerator.java index 95436576f..77c9e1afd 100644 --- a/java/security/AlgorithmParameterGenerator.java +++ b/java/security/AlgorithmParameterGenerator.java @@ -1,5 +1,5 @@ /* AlgorithmParameterGenerator.java --- Algorithm Parameter Generator - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2003, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -36,16 +36,47 @@ obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package java.security; + import java.security.spec.AlgorithmParameterSpec; /** - AlgorithmParameterGenerator is used to generate - algorithm parameters for specified algorithms. - This class is used to generate the algorithm parameters - for a specific algorithm. - - @since JDK 1.2 - @author Mark Benvenuto + *

The AlgorithmParameterGenerator class is used to generate a + * set of parameters to be used with a certain algorithm. Parameter generators + * are constructed using the getInstance() factory methods (static + * methods that return instances of a given class).

+ * + *

The object that will generate the parameters can be initialized in two + * different ways: in an algorithm-independent manner, or in an + * algorithm-specific manner:

+ * + *