= Customize properties = [wiki:gmf:gmf * * @generated NOT */ @Override public List getPropertyDescriptors(Object object) { if (itemPropertyDescriptors == null) { super.getPropertyDescriptors(object); addTitlePropertyDescriptor(object); addDescriptionPropertyDescriptor(object); // --------------- this is new ----------- addBackgroundImageDescriptor(object); // --------------------------------------- } return itemPropertyDescriptors; } }}} [[BR]] and this is the new method: {{{ protected void addBackgroundImageDescriptor(Object object) { IItemPropertyDescriptor imagePropertyDescriptor = new ImagePropertyDescriptor(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Scene_backgroundImage_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Scene_backgroundImage_feature", "_UI_Scene_type"), ExhibitionPackage.Literals.SCENE__BACKGROUND_IMAGE, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null); itemPropertyDescriptors.add(imagePropertyDescriptor); } }}}