blob: 4db8cfe56a3c2015013f29bad52e5e5eda6b3e5a [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
*******************************************************************************/
/**
*
*/
package org.eclipse.emf.parsley.tests.providers;
import static org.eclipse.emf.parsley.examples.library.EXTLibraryPackage.Literals.*;
import org.eclipse.emf.parsley.ui.provider.EClassToEStructuralFeatureAsStringsMap;
import org.eclipse.emf.parsley.ui.provider.FeaturesProvider;
/**
* @author Lorenzo Bettini
*
*/
public class LibraryEStructuralFeaturesAsStringsProvider extends
FeaturesProvider {
@Override
protected void buildMap(EClassToEStructuralFeatureMap map) {
super.buildMap(map);
map.mapTo(LIBRARY, LIBRARY__NAME, ADDRESSABLE__ADDRESS);
}
@Override
protected void buildStringMap(
EClassToEStructuralFeatureAsStringsMap stringMap) {
super.buildStringMap(stringMap);
stringMap.mapTo(PERSON.getInstanceClassName(), "firstName", "lastName",
"address");
stringMap.mapTo(WRITER.getInstanceClassName(), "firstName", "lastName",
"books");
}
}