blob: c85d5703ea3f407a4de46f1324157e8ef3d47c47 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.ecoretools.design.internal;
import java.util.HashMap;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.impl.BinaryResourceImpl;
import org.eclipse.emf.ecore.resource.impl.BinaryResourceImpl.BinaryIO.Version;
public class EcoreBinResourceImpl extends BinaryResourceImpl {
public EcoreBinResourceImpl(URI uri) {
super(uri);
this.defaultLoadOptions = new HashMap<Object, Object>();
this.defaultLoadOptions.put(OPTION_VERSION, Version.VERSION_1_1);
this.defaultSaveOptions = new HashMap<Object, Object>();
this.defaultSaveOptions.put(OPTION_VERSION, Version.VERSION_1_1);
}
}