blob: 614e844f264c180ba0990811b41a87832802df60 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2012 E.D.Willink and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.library;
import org.eclipse.emf.common.util.URI;
import org.eclipse.jdt.annotation.NonNull;
public interface LibraryConstants
{
@SuppressWarnings("null")
static final @NonNull String PLUGIN_ID = LibraryConstants.class.getPackage().getName();
@SuppressWarnings("null")
static final @NonNull URI GEN_MODEL_URI = URI.createPlatformPluginURI("/" + PLUGIN_ID + "/model/oclstdlib.genmodel", true); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The URI of this Standard Library.
*/
public static final @NonNull String STDLIB_URI = "http://www.eclipse.org/ocl/3.1.0/OCL.oclstdlib"; //$NON-NLS-1$
/**
* The URI of the Ecore serialization of this Standard Library.
*/
// @SuppressWarnings("null")
// public static final @NonNull URI ECORE_STDLIB_URI = URI.createPlatformPluginURI("/" + PLUGIN_ID + "/model-gen/OCL-2.5.ecore", true); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The xmi:id prefix of library elements.
*/
// public static final @NonNull String ECORE_STDLIB_PREFIX = "OCL_E"; //$NON-NLS-1$
static final @NonNull String COMPARE_TO = "compareTo"; //$NON-NLS-1$
}