blob: 2da092a7aeb65d5a3494b0b8ac7326f1578e2895 [file] [log] [blame]
package org.eclipse.emf.parsley.examples.firstexample.config;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.parsley.config.Configurator;
import org.eclipse.emf.parsley.examples.firstexample.FirstexampleSaveableTreeFormView;
@SuppressWarnings("all")
public class FirstexampleConfigurator extends Configurator {
public URI resourceURI(final FirstexampleSaveableTreeFormView it) {
String _property = System.getProperty("user.home");
String _plus = (_property + "/MyLibrary.library");
return URI.createFileURI(_plus);
}
}