blob: 5a5ac16f3c63899fbf3c681f4c7c741894b0c926 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 David A Carlson.
* 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:
* David A Carlson (XMLmodeling.com) - initial API and implementation
*
*******************************************************************************/
package org.eclipse.mdht.uml.term.core.util;
import org.eclipse.uml2.uml.resource.UMLResource;
public interface TermResource {
public static final String PROFILE_FILE_EXTENSION = "profile." //$NON-NLS-1$
+ UMLResource.FILE_EXTENSION;
public static final String PROFILES_PATHMAP = "pathmap://MDHT_TERM_PROFILES/"; //$NON-NLS-1$
public static final String TERM_PROFILE_URI = PROFILES_PATHMAP + "Terminology." //$NON-NLS-1$
+ PROFILE_FILE_EXTENSION;
}