Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
escet
Manage
Activity
Members
Labels
Plan
Issues
129
Issue boards
Milestones
Iterations
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse ESCET (Supervisory Control Engineering Toolkit)
escet
Merge requests
!393
#440
Add CifCheckNoCompDefInst check baseclass.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#440
Add CifCheckNoCompDefInst check baseclass.
add-cifcheck-nocompdefinst-baseclass
into
develop
Overview
6
Commits
2
Pipelines
1
Changes
3
All threads resolved!
Hide all comments
Merged
Albert Hofkamp
requested to merge
add-cifcheck-nocompdefinst-baseclass
into
develop
2 years ago
Overview
6
Commits
2
Pipelines
1
Changes
3
All threads resolved!
Hide all comments
Expand
Closes
#440 (closed)
0
0
Merge request reports
Compare
develop
version 1
e687f57e
2 years ago
develop (base)
and
latest version
latest version
334a872b
2 commits,
2 years ago
version 1
e687f57e
1 commit,
2 years ago
3 files
+
58
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
cif/org.eclipse.escet.cif.common/src/org/eclipse/escet/cif/common/checkers/CifCheck.java
+
15
−
1
Options
@@ -22,5 +22,19 @@ import org.eclipse.escet.cif.metamodel.java.CifWithArgWalker;
* {@code walk*} methods should not be overridden, as they are ignored by {@link CifChecker}.
*/
public
abstract
class
CifCheck
extends
CifWithArgWalker
<
CifCheckViolations
>
{
// Nothing to do here.
/**
* Whether the check properly checks CIF specifications containing component definitions and/or component
* instantiations.
*
* <p>
* By default {@code true}, override if the check does not handle component definitions and/or component
* instantiations properly.
* </p>
*
* @return {@copde true} if component definitions and/or component instantiations are properly handled, else
* {@code false}.
*/
public
boolean
supportsCompDefInst
()
{
return
true
;
}
}
Loading