blob: 71e1631999903dfc077cfab4bf011bef576f46ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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;
import org.eclipse.core.resources.IResource;
import org.eclipse.jpt.utility.internal.node.Node;
/**
* Tweak the node interface with JPA-specific protocol.
*/
public interface IJpaNode extends Node {
/**
* Return the JPA project the object belongs to.
*/
IJpaProject jpaProject();
/**
* Return the resource that most directly contains the object.
* This is used by JpaHelper.
*/
IResource resource();
// ********** covariant overrides **********
IJpaNode parent();
IJpaProject root();
}