Skip to content
Snippets Groups Projects
Commit 977c4de8 authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

IConstraint -> Constraint in service interface

refs 2553
parent 1d95bce6
No related branches found
No related tags found
No related merge requests found
...@@ -5,8 +5,8 @@ import java.util.function.Consumer; ...@@ -5,8 +5,8 @@ import java.util.function.Consumer;
import org.fortiss.tooling.kernel.extension.IConstraintVerifier; import org.fortiss.tooling.kernel.extension.IConstraintVerifier;
import org.fortiss.tooling.kernel.internal.ConstraintVerificationService; import org.fortiss.tooling.kernel.internal.ConstraintVerificationService;
import org.fortiss.tooling.kernel.model.constraints.Constraint;
import org.fortiss.tooling.kernel.model.constraints.IConstrained; import org.fortiss.tooling.kernel.model.constraints.IConstrained;
import org.fortiss.tooling.kernel.model.constraints.IConstraint;
import org.fortiss.tooling.kernel.model.constraints.IConstraintVerificationStatus; import org.fortiss.tooling.kernel.model.constraints.IConstraintVerificationStatus;
import org.fortiss.tooling.kernel.model.constraints.OutdatedVerificationStatus; import org.fortiss.tooling.kernel.model.constraints.OutdatedVerificationStatus;
...@@ -17,7 +17,7 @@ import org.fortiss.tooling.kernel.model.constraints.OutdatedVerificationStatus; ...@@ -17,7 +17,7 @@ import org.fortiss.tooling.kernel.model.constraints.OutdatedVerificationStatus;
* @author aravantinos * @author aravantinos
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating YELLOW Hash: EA0300E3E7FE78E9541ADC365502975F * @ConQAT.Rating YELLOW Hash: F5501E6C42356F1144C44D6ED201BF04
*/ */
public interface IConstraintVerificationService { public interface IConstraintVerificationService {
/** Returns the service instance. */ /** Returns the service instance. */
...@@ -31,7 +31,13 @@ public interface IConstraintVerificationService { ...@@ -31,7 +31,13 @@ public interface IConstraintVerificationService {
* command. Should not yield any "useless" change because verification should always * command. Should not yield any "useless" change because verification should always
* update the constraint status and the checksums anyways. * update the constraint status and the checksums anyways.
*/ */
void verify(IConstraint constraint); void verify(Constraint constraint);
/**
* @param constraint
* Cancels the last verification of <code>constraint</code>.
*/
void cancel(Constraint constraint);
/** /**
* @param constraint * @param constraint
...@@ -43,14 +49,14 @@ public interface IConstraintVerificationService { ...@@ -43,14 +49,14 @@ public interface IConstraintVerificationService {
* {isUpToDate} *only if IConstraintVerificationUIService.getStatus does not provide the * {isUpToDate} *only if IConstraintVerificationUIService.getStatus does not provide the
* information you want*. * information you want*.
*/ */
boolean isUpToDate(IConstraint constraint); boolean isUpToDate(Constraint constraint);
/** /**
* @param constraint * @param constraint
* @return A list of possible automatic fixes for <code>constraint</code>. A constraint should * @return A list of possible automatic fixes for <code>constraint</code>. A constraint should
* be candidate to fixing if it is anything but successful or outdated. * be candidate to fixing if it is anything but successful or outdated.
*/ */
<T extends IConstraint> List<IFix> fixes(T constraint); List<IFix> fixes(Constraint constraint);
/** Interface for a "fix". */ /** Interface for a "fix". */
public interface IFix { public interface IFix {
...@@ -105,9 +111,8 @@ public interface IConstraintVerificationService { ...@@ -105,9 +111,8 @@ public interface IConstraintVerificationService {
* Leaves the other elements as they are if they exist, fill them with * Leaves the other elements as they are if they exist, fill them with
* <code>null</code> till <code>index</code> otherwise. * <code>null</code> till <code>index</code> otherwise.
*/ */
void setConstrained(IConstraint constraint, IConstrained constrained, int index); void setConstrained(Constraint constraint, IConstrained constrained, int index);
/** Registers the given verifier with the service. */ /** Registers the given verifier with the service. */
<T extends IConstraint> void registerConstraintVerifier(IConstraintVerifier<T> verifier, void registerConstraintVerifier(IConstraintVerifier verifier);
Class<T> constraintElementClass);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment