/** * 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.ButtonsModeEnum; import org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings; import org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings; import org.eclipse.jface.viewers.ViewerFilter; // End of user code /** * * */ public interface TabPropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the activity * */ public EObject getActivity(); /** * Init the activity * @param settings the combo setting */ public void initActivity(EObjectFlatComboSettings settings); /** * Defines a new activity * @param newValue the new activity to set * */ public void setActivity(EObject newValue); /** * Defines the button mode * @param newValue the new mode to set * */ public void setActivityButtonMode(ButtonsModeEnum newValue); /** * Adds the given filter to the activity edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToActivity(ViewerFilter filter); /** * Adds the given filter to the activity edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToActivity(ViewerFilter filter); /** * @return the layout * */ public EObject getLayout(); /** * Init the layout * @param settings the combo setting */ public void initLayout(EObjectFlatComboSettings settings); /** * Defines a new layout * @param newValue the new layout to set * */ public void setLayout(EObject newValue); /** * Defines the button mode * @param newValue the new mode to set * */ public void setLayoutButtonMode(ButtonsModeEnum newValue); /** * Adds the given filter to the layout edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToLayout(ViewerFilter filter); /** * Adds the given filter to the layout edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToLayout(ViewerFilter filter); /** * Init the actions * @param current the current value * @param containgFeature the feature where to navigate if necessary * @param feature the feature to manage */ public void initActions(ReferencesTableSettings settings); /** * Update the actions * @param newValue the actions to update * */ public void updateActions(); /** * Adds the given filter to the actions edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToActions(ViewerFilter filter); /** * Adds the given filter to the actions edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToActions(ViewerFilter filter); /** * @return true if the given element is contained inside the actions table * */ public boolean isContainedInActionsTable(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 }