blob: 963808b17aada77e7cd1ec7b087bc2504cc92125 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2016-2020 Vector Informatik GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vector Informatik GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.validations.ta;
import org.eclipse.app4mc.amalthea.validations.ta.software.TASoftwareModeConditionConjunctionAlwaysFalse;
import org.eclipse.app4mc.amalthea.validations.ta.software.TASoftwareModeConditionDisjunctionAlwaysTrue;
import org.eclipse.app4mc.amalthea.validations.ta.software.TASoftwareOsEvent;
import org.eclipse.app4mc.amalthea.validations.ta.software.TASoftwareRunnableCall;
import org.eclipse.app4mc.amalthea.validations.ta.software.TASoftwareServerCall;
import org.eclipse.app4mc.validation.annotation.Profile;
import org.eclipse.app4mc.validation.annotation.ValidationGroup;
import org.eclipse.app4mc.validation.core.IProfile;
import org.eclipse.app4mc.validation.core.Severity;
@Profile(name = "Software Validations (Timing Architects)")
@ValidationGroup(
severity = Severity.ERROR,
validations = {
TASoftwareOsEvent.class,
TASoftwareRunnableCall.class,
TASoftwareServerCall.class
}
)
@ValidationGroup(
severity = Severity.WARNING,
validations = {
TASoftwareModeConditionConjunctionAlwaysFalse.class,
TASoftwareModeConditionDisjunctionAlwaysTrue.class
}
)
public class TASoftwareProfile implements IProfile {
// Do nothing
}