blob: b30a7ff8471a44ff92c25e0efa2b6357e912d31c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.core.internal.context.persistence;
import java.util.List;
import org.eclipse.jpt.core.context.JpaContextNode;
import org.eclipse.jpt.core.context.persistence.PersistenceJpaContextNode;
import org.eclipse.jpt.core.internal.context.AbstractJpaContextNode;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
public abstract class AbstractPersistenceJpaContextNode
extends AbstractJpaContextNode
implements PersistenceJpaContextNode
{
// ********** constructor **********
protected AbstractPersistenceJpaContextNode(JpaContextNode parent) {
super(parent);
}
// ********** validation **********
/**
* All subclass implementations {@link #validate(List<IMessage>)}
* should be preceded by a "super" call to this method
*/
public void validate(List<IMessage> messages) {
// do nothing by default
}
}