blob: 56bc770b7c00901285a378eacb24a1f93a7e7967 [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.resource.common;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.wst.common.componentcore.ArtifactEdit;
public abstract class JpaArtifactEdit extends ArtifactEdit
{
public JpaArtifactEdit(IProject aProject, boolean toAccessAsReadOnly)
throws IllegalArgumentException {
super(aProject, toAccessAsReadOnly);
}
/**
* @return a resource for the given file
*/
public abstract JpaXmlResource getResource(IFile file);
/**
* @param deployURI - this must be in a deployment relevant form
* (e.g "META-INF/persistence.xml" instead of "src/META-INF/persistence.xml")
* @return a resource for the given deployment file URI
*/
public abstract JpaXmlResource getResource(String deployURI);
}