Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
af3
kernel
Commits
977c4de8
Commit
977c4de8
authored
8 years ago
by
Vincent Aravantinos
Browse files
Options
Downloads
Patches
Plain Diff
IConstraint -> Constraint in service interface
refs 2553
parent
1d95bce6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/IConstraintVerificationService.java
+13
-8
13 additions, 8 deletions
...ooling/kernel/service/IConstraintVerificationService.java
with
13 additions
and
8 deletions
org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/IConstraintVerificationService.java
+
13
−
8
View file @
977c4de8
...
@@ -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
(
I
Constraint
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
(
I
Constraint
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
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment