use of org.obeonetwork.dsl.typeslibrary.parts.NativeTypePropertiesEditionPart in project InformationSystem by ObeoNetwork.
the class NativeTypePropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final NativeType nativeType = (NativeType) elt;
final NativeTypePropertiesEditionPart nativeTypePart = (NativeTypePropertiesEditionPart) editingPart;
// init values
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.name))
nativeTypePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, nativeType.getName()));
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.spec)) {
nativeTypePart.initSpec(EEFUtils.choiceOfValues(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_Spec()), nativeType.getSpec());
}
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
// init part
mapsToSettings = new EObjectFlatComboSettings(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_MapsTo());
nativeTypePart.initMapsTo(mapsToSettings);
// set the button mode
nativeTypePart.setMapsToButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
nativeTypePart.addFilterToMapsTo(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof NativeType);
}
});
// Start of user code for additional businessfilters for mapsTo
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
Aggregations