blob: 688c9e84fce0c954605fcf2d25cf2ea9e2190798 [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
*
* Contributors:
* Lorenzo Bettini - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.resource;
import org.eclipse.emf.ecore.resource.Resource;
/**
* This is used when a loaded resource is empty, so that the programmer
* can add default contents.
*
* @author Lorenzo Bettini
*
*/
public class EmptyResourceInitializer {
public void initialize(Resource resource) {
}
}