blob: a1f7f4b287a71936196b07daf8986c3913c95563 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
* Generated with Acceleo
*/
package org.eclipse.opencert.apm.baseline.baseline.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 BaseArtefactComplianceMapPropertiesEditionPart {
/**
* Init the complianceMap
* @param current the current value
* @param containgFeature the feature where to navigate if necessary
* @param feature the feature to manage
*/
public void initComplianceMap(ReferencesTableSettings settings);
/**
* Update the complianceMap
* @param newValue the complianceMap to update
*
*/
public void updateComplianceMap();
/**
* Adds the given filter to the complianceMap edition editor.
*
* @param filter
* a viewer filter
* @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
*
*/
public void addFilterToComplianceMap(ViewerFilter filter);
/**
* Adds the given filter to the complianceMap edition editor.
*
* @param filter
* a viewer filter
* @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
*
*/
public void addBusinessFilterToComplianceMap(ViewerFilter filter);
/**
* @return true if the given element is contained inside the complianceMap table
*
*/
public boolean isContainedInComplianceMapTable(EObject element);
/**
* Init the artefactComplianceMap
* @param current the current value
* @param containgFeature the feature where to navigate if necessary
* @param feature the feature to manage
*/
public void initArtefactComplianceMap(ReferencesTableSettings settings);
/**
* Update the artefactComplianceMap
* @param newValue the artefactComplianceMap to update
*
*/
public void updateArtefactComplianceMap();
/**
* Adds the given filter to the artefactComplianceMap edition editor.
*
* @param filter
* a viewer filter
* @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
*
*/
public void addFilterToArtefactComplianceMap(ViewerFilter filter);
/**
* Adds the given filter to the artefactComplianceMap edition editor.
*
* @param filter
* a viewer filter
* @see org.eclipse.jface.viewers.StructuredViewer#addFilter(ViewerFilter)
*
*/
public void addBusinessFilterToArtefactComplianceMap(ViewerFilter filter);
/**
* @return true if the given element is contained inside the artefactComplianceMap table
*
*/
public boolean isContainedInArtefactComplianceMapTable(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
}