blob: d0183a84f5a0380d42a17184cccf02ef95e21918 [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.stimuli.TAStimuliVRStimulus;
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 = "Stimuli Validations (Timing Architects)")
@ValidationGroup(
severity = Severity.ERROR,
validations = {
TAStimuliVRStimulus.class
}
)
public class TAStimuliProfile implements IProfile {
// Do nothing
}