blob: bc4a81558972cfb4fe4b3291c106d67a5c409a56 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2015 itemis and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.tests.emf.check.internal;
import java.util.List;
import org.eclipse.sphinx.emf.check.internal.CheckMethodWrapper;
import org.eclipse.sphinx.examples.hummingbird20.check.withcatalog.Hummingbird20ConnectionsCheckValidator;
public class TestableHummingbird20ConnectionsCheckValidator extends Hummingbird20ConnectionsCheckValidator {
public TestableHummingbird20ConnectionsCheckValidator() {
super(TestableCheckValidatorRegistry.INSTANCE);
}
@Override
public void initCheckMethods() {
super.initCheckMethods();
}
@Override
public List<CheckMethodWrapper> getCheckMethodsForModelObjectType(Class<?> modelObjectType) {
return super.getCheckMethodsForModelObjectType(modelObjectType);
}
}