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

makes the method "isAvailableForDevelopmentProcess" more neutral: "shouldBeManuallyActivated"

refs 2620
parent 06c57eff
No related branches found
No related tags found
No related merge requests found
......@@ -63,18 +63,15 @@ public interface IConstraintVerifierUI {
*/
public boolean displayAsWarning();
/**
* The following features deal with the usage of constraints to drive the process.
*
* EXPERIMENTAL.
*/
/** Gets a general description for the constraint type. */
String getDescription();
/** Returns the image descriptor to be used as icon image. */
public ImageDescriptor getIconImageDescriptor();
/** True if this constraint shall be displayed as a development process constraint. */
boolean isUsableForDevelopmentProcess();
/**
* True if this constraint shall be always activated (and therefore the user shall not be
* offered the possibility to control whether the constraint is active or not).
*/
boolean shouldBeManuallyActivated();
}
......@@ -196,7 +196,7 @@ public class ConstraintVerifierUIBases {
/** {@inheritDoc} */
@Override
public boolean isUsableForDevelopmentProcess() {
public boolean shouldBeManuallyActivated() {
return false;
}
......
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