/** * Generated with Acceleo */ package org.eclipse.amalgam.tutorials.emf.droid.parts; // Start of user code for imports import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings; import org.eclipse.jface.viewers.ViewerFilter; // End of user code /** * * */ public interface SubMenuPropertiesEditionPart { /** * Init the menuItems * @param current the current value * @param containgFeature the feature where to navigate if necessary * @param feature the feature to manage */ public void initMenuItems(ReferencesTableSettings settings); /** * Update the menuItems * @param newValue the menuItems to update * */ public void updateMenuItems(); /** * Adds the given filter to the menuItems edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToMenuItems(ViewerFilter filter); /** * Adds the given filter to the menuItems edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToMenuItems(ViewerFilter filter); /** * @return true if the given element is contained inside the menuItems table * */ public boolean isContainedInMenuItemsTable(EObject element); /** * Init the groups * @param current the current value * @param containgFeature the feature where to navigate if necessary * @param feature the feature to manage */ public void initGroups(ReferencesTableSettings settings); /** * Update the groups * @param newValue the groups to update * */ public void updateGroups(); /** * Adds the given filter to the groups edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToGroups(ViewerFilter filter); /** * Adds the given filter to the groups edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToGroups(ViewerFilter filter); /** * @return true if the given element is contained inside the groups table * */ public boolean isContainedInGroupsTable(EObject element); /** * Returns the internationalized title text. * * @return the internationalized title text. * */ public String getTitle(); // Start of user code for additional methods // End of user code }