/** * Generated with Acceleo */ package org.obeonetwork.dsl.typeslibrary.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.jface.viewers.ViewerFilter; // End of user code /** * * */ public interface UserDefinedTypeRefPropertiesEditionPart { /** * @return the type * */ public EObject getType(); /** * Init the type * @param settings the combo setting */ public void initType(EObjectFlatComboSettings settings); /** * Defines a new type * @param newValue the new type to set * */ public void setType(EObject newValue); /** * Defines the button mode * @param newValue the new mode to set * */ public void setTypeButtonMode(ButtonsModeEnum newValue); /** * Adds the given filter to the type edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addFilterToType(ViewerFilter filter); /** * Adds the given filter to the type edition editor. * * @param filter * a viewer filter * @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter) * */ public void addBusinessFilterToType(ViewerFilter filter); /** * Returns the internationalized title text. * * @return the internationalized title text. * */ public String getTitle(); // Start of user code for additional methods // End of user code }