use of org.obeonetwork.dsl.environment.parts.DtoPropertiesEditionPart in project InformationSystem by ObeoNetwork.
the class DtoDtoPropertiesEditionComponent 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 DTO dTO = (DTO) elt;
final DtoPropertiesEditionPart dtoPart = (DtoPropertiesEditionPart) editingPart;
// init values
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.name))
dtoPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, dTO.getName()));
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.supertype)) {
// init part
supertypeSettings = new EObjectFlatComboSettings(dTO, EnvironmentPackage.eINSTANCE.getStructuredType_Supertype());
dtoPart.initSupertype(supertypeSettings);
// set the button mode
dtoPart.setSupertypeButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.description))
dtoPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, dTO.getDescription()));
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.associatedTypes)) {
associatedTypesSettings = new ReferencesTableSettings(dTO, EnvironmentPackage.eINSTANCE.getStructuredType_AssociatedTypes());
dtoPart.initAssociatedTypes(associatedTypesSettings);
}
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.supertype)) {
dtoPart.addFilterToSupertype(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 StructuredType);
}
});
// Start of user code for additional businessfilters for supertype
// End of user code
}
if (isAccessible(EnvironmentViewsRepository.Dto.Properties.associatedTypes)) {
dtoPart.addFilterToAssociatedTypes(new EObjectFilter(EnvironmentPackage.Literals.STRUCTURED_TYPE));
// Start of user code for additional businessfilters for associatedTypes
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
Aggregations