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
c3c3de8a
Commit
c3c3de8a
authored
8 years ago
by
Vincent Aravantinos
Browse files
Options
Downloads
Patches
Plain Diff
improves documentation
refs 2553
parent
89fcbd0b
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
+14
-5
14 additions, 5 deletions
...ooling/kernel/service/IConstraintVerificationService.java
with
14 additions
and
5 deletions
org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/service/IConstraintVerificationService.java
+
14
−
5
View file @
c3c3de8a
...
...
@@ -15,7 +15,7 @@ import org.fortiss.tooling.kernel.model.constraints.IConstraintVerificationStatu
* @author aravantinos
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 2
A9D63384E528F868E36205000DFD107
* @ConQAT.Rating YELLOW Hash: 2
3108C2D054148D1DADBF2C8BB8023A2
*/
public
interface
IConstraintVerificationService
{
...
...
@@ -23,15 +23,24 @@ public interface IConstraintVerificationService {
public
static
final
IConstraintVerificationService
INSTANCE
=
new
ConstraintVerificationService
();
/** Verifies the given constraint. */
/**
* @param constraint
* Verifies <code>constraint</code>. The framework always runs the verification in a
* command. Should not yield any "useless" change because verification should always
* update the constraint status and the checksums anyways.
*/
public
void
verify
(
IConstraint
constraint
);
/** True if the given constraint is up to date. */
/**
* @param constraint
* @return <code>true</code> if <code>constraint</code> is up to date.
*/
public
boolean
isUpToDate
(
IConstraint
constraint
);
/**
* Returns a list of possible automatic fixes for the (constraint of the) given status.
* A status should be candidate to fixing if it is anything but successful or outdated.
* @param status
* @return A list of possible automatic fixes for the (constraint of) <code>status</code>.
* A status should be candidate to fixing if it is anything but successful or outdated.
*/
public
List
<
IFix
>
fixes
(
IConstraintVerificationStatus
status
);
...
...
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