blob: 0132ee98e3c0f1966fc487e1d2db5866d1d4ba54 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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
*******************************************************************************/
/**
*
*/
package org.eclipse.emf.parsley.edit.domain;
import org.eclipse.emf.edit.domain.AdapterFactoryEditingDomain;
/**
* This ensures that only one instance of {@link AdapterFactoryEditingDomain} will
* be used.
*
* @author Lorenzo Bettini - Initial contribution and API
*
*/
public class GlobalAdapterFactoryEditingDomainProvider extends DefaultAdapterFactoryEditingDomainProvider {
protected static AdapterFactoryEditingDomain singleton;
public AdapterFactoryEditingDomain get() {
if (singleton == null)
singleton = super.get();
return singleton;
}
}