mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
- fixed interface comment
This commit is contained in:
parent
bad558e232
commit
3ff7fd3ecd
1 changed files with 13 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue