blob: a9a4c653cea244946f2cb46714f04e99db6a199f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.project.model;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IPath;
public interface IQvtElement {
int QVT_PROJECT = 1;
int QVT_NAMESPACE = 2;
int QVT_COMPILATION_UNIT = 3;
int getElementType();
String getName();
IPath getFullPath();
IResource getUnderlyingResource() throws QvtModelException;
IQvtProject getQvtProject();
}