blob: 6e30496483ca02ce59427992f25b341c13db9fd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* Created on Oct 26, 2004
*/
package org.eclipse.wst.common.internal.emf.utilities;
/**
* @author mdelder
*
*/
public class ResourceIsLoadingAdapterFactory {
public static ResourceIsLoadingAdapterFactory INSTANCE = new ResourceIsLoadingAdapterFactory();
public ResourceIsLoadingAdapter createResourceIsLoadingAdapter() {
return new ResourceIsLoadingAdapter();
}
}