All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.dawnsci.hdf5.nexus.NexusFileFactoryHDF5 Maven / Gradle / Ivy

/*-
 * Copyright 2015 Diamond Light Source Ltd.
 *
 * 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.dawnsci.hdf5.nexus;

import org.eclipse.dawnsci.nexus.INexusFileFactory;
import org.eclipse.dawnsci.nexus.NexusFile;

/**
 * HDF5 implementation of {@link INexusFileFactory}.
 * 
 * DO NOT use this concrete class in non-test code. Use OSGi to inject the
 * implementation of INexusFileFactory.
 */
public class NexusFileFactoryHDF5 implements INexusFileFactory {
	
	@Override
	public NexusFile newNexusFile(String path) {
		return new NexusFileHDF5(path);
	}

	@Override
	public NexusFile newNexusFile(String path, boolean enableSWMR) {
		return new NexusFileHDF5(path, enableSWMR);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy