/******************************************************************************* * Copyright (c) 2015 GoPivotal, Inc. * 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: * Pivotal, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.boot.validation; import org.springframework.ide.eclipse.core.model.validation.IValidationRule; /** * Abstract superclass for Spring Boot related validation rules. Not much here yet * as there's only rule at the moment. As more rules are implemented common * infrastructure can be put in this class. * * @author Kris De Volder */ public abstract class BootValidationRule implements IValidationRule<SpringCompilationUnit, SpringBootValidationContext> { }