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

defines a base to relieve implementors from having to implement things which...

defines a base to relieve implementors from having to implement things which are maybe not useful at first
refs 2620
parent bc2675da
No related branches found
No related tags found
No related merge requests found
/*--------------------------------------------------------------------------+
$Id$
| |
| Copyright 2016 fortiss GmbH |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.extension.base;
import org.fortiss.tooling.kernel.extension.IConstraintVerifier;
import org.fortiss.tooling.kernel.model.constraints.IConstraint;
/**
* Base for {@link IConstraintVerifier}.
*
* @author aravantinos
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 79FBF0ED6E6C0E33450914DD87CD7A3E
*/
public abstract class ConstraintVerifierBase<T extends IConstraint> implements
IConstraintVerifier<T> {
/** Gets a general description for the constraint type. */
@Override
public String getDescription() {
return "";
}
/** True if this constraint shall be displayed as a development process constraint. */
@Override
public boolean isUsableForDevelopmentProcess() {
return true;
}
}
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