blob: 776695602594a6ce3cb5df8c5fa510a51535afb4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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 contribution and API
*******************************************************************************/
package org.eclipse.emf.parsley.views;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.parsley.config.Configurator;
import com.google.inject.Inject;
/**
* This implements the abstract method {@link #createResourceURI()} by
* delegating to an injected {@link Configurator}.
*
* @author Lorenzo Bettini - Initial contribution and API
*
*/
public class SaveableTreeView extends AbstractSaveableTreeView {
@Inject
private Configurator configurator;
@Override
protected URI createResourceURI() {
return configurator.createResourceURI(this);
}
}