Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/codan
diff options
context:
space:
mode:
authorAlena Laskavaia2010-03-18 14:36:12 +0000
committerAlena Laskavaia2010-03-18 14:36:12 +0000
commit3ff7fd3ecd77348b388bc98353ef7e1bd6466788 (patch)
tree26e2ff84fd3d4ed7c5c1145e0a0a3a1dd2d49b95 /codan
parentbad558e232093b7b985eed2f96a171f685a4b9f3 (diff)
downloadorg.eclipse.cdt-3ff7fd3ecd77348b388bc98353ef7e1bd6466788.tar.gz
org.eclipse.cdt-3ff7fd3ecd77348b388bc98353ef7e1bd6466788.tar.xz
org.eclipse.cdt-3ff7fd3ecd77348b388bc98353ef7e1bd6466788.zip
- fixed interface comment
Diffstat (limited to 'codan')
-rw-r--r--codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckerWithParameters.java19
1 files changed, 13 insertions, 6 deletions
diff --git a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckerWithParameters.java b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckerWithParameters.java
index 284f02b2c27..cf91aea2328 100644
--- a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckerWithParameters.java
+++ b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckerWithParameters.java
@@ -11,17 +11,24 @@
package org.eclipse.cdt.codan.core.model;
/**
- * Interface for checker with parameters, if checker implements this
- * interface method would be called on initialization so checker has
- * a chance to set default values for its parameters
+ * Interface for checker with parameters, if checker implements this interface
+ * method would be called on initialization so checker has a chance to set
+ * default values for its parameters
+ * <p>
+ * <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
+ * of a work in progress. There is no guarantee that this API will work or that
+ * it will remain the same.
+ * </p>
*
* @noextend This interface is not intended to be extended by clients.
- * @noimplement This interface is not intended to be implemented by clients.
*/
public interface ICheckerWithParameters {
/**
- * Implement this method to set default parameters for checkers with parameters.
- * @param problem - instance of problem working copy
+ * Implement this method to set default parameters for checkers with
+ * parameters.
+ *
+ * @param problem
+ * - instance of problem working copy
*/
void initParameters(IProblemWorkingCopy problem);
}

Back to the top