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

moves activate/deactivate to UI service

refs 2620
parent a5adeff0
No related branches found
No related tags found
No related merge requests found
......@@ -51,15 +51,15 @@ public interface IConstraintVerifier<T extends IConstraint> extends IEObjectAwar
*/
public List<IFix> fixes(IConstraintVerificationStatus status);
/**
* The following features deal with the usage of constraints to drive the process.
*
* EXPERIMENTAL.
*/
/** Gets a general description for the constraint type. */
public String getDescription();
/** True if this constraint shall be displayed as a development process constraint. */
public boolean isUsableForDevelopmentProcess();
/** Activates the constraint type. */
public void activate();
/** Deactivates the constraint type. */
public void deactivate();
}
......@@ -42,16 +42,4 @@ public abstract class ConstraintVerifierBase<T extends IConstraint> implements
public boolean isUsableForDevelopmentProcess() {
return true;
}
/** {@inheritDoc} */
@Override
public void activate() {
// TODO Auto-generated method stub
}
/** {@inheritDoc} */
@Override
public void deactivate() {
// TODO Auto-generated method stub
}
}
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