X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IProblemRequestor.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IProblemRequestor.java index 5f2e487..c77d5eb 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IProblemRequestor.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IProblemRequestor.java @@ -12,39 +12,41 @@ package net.sourceforge.phpdt.core; import net.sourceforge.phpdt.core.compiler.IProblem; - /** - * A callback interface for receiving java problem as they are discovered - * by some Java operation. + * A callback interface for receiving java problem as they are discovered by + * some Java operation. * * @see IProblem * @since 2.0 */ public interface IProblemRequestor { - + /** * Notification of a Java problem. * - * @param problem IProblem - The discovered Java problem. - */ + * @param problem + * IProblem - The discovered Java problem. + */ void acceptProblem(IProblem problem); /** * Notification sent before starting the problem detection process. - * Typically, this would tell a problem collector to clear previously recorded problems. + * Typically, this would tell a problem collector to clear previously + * recorded problems. */ void beginReporting(); /** * Notification sent after having completed problem detection process. - * Typically, this would tell a problem collector that no more problems should be expected in this - * iteration. + * Typically, this would tell a problem collector that no more problems + * should be expected in this iteration. */ void endReporting(); /** - * Predicate allowing the problem requestor to signal whether or not it is currently - * interested by problem reports. When answering false, problem will + * Predicate allowing the problem requestor to signal whether or not it is + * currently interested by problem reports. When answering + * false, problem will * not be discovered any more until the next iteration. * * This predicate will be invoked once prior to each problem detection iteration.