blob: 30b6252a514e54d42211a7400571481b02bdbc9f [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2010 Mia-Software.
* 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:
*
* Nicolas Guyomar (Mia-Software) - initial API and implementation
* *******************************************************************************
*
*/
package org.eclipse.modisco.kdm.source.extension.ui.registry;
public final class EditorRegistry {
public static final String EXTENSION_POINT_STRATEGY_SOURCE_ID = "org.eclipse.modisco.kdm.source.extension.ui.source.strategy"; //$NON-NLS-1$
public static final String EXTENSION_POINT_STRATEGY_REVEALING_ID = "org.eclipse.modisco.kdm.source.extension.ui.revealing.strategy"; //$NON-NLS-1$
public static final String METAMODEL = "meta-model"; //$NON-NLS-1$
public static final String CLASS = "class"; //$NON-NLS-1$
private static EditorRegistry instance;
private EditorRegistry() {
// not instantiable
}
public static EditorRegistry getInstance() {
if (EditorRegistry.instance == null) {
EditorRegistry.instance = new EditorRegistry();
}
return EditorRegistry.instance;
}
}