/******************************************************************************* * Copyright (c) 2012 University of Mannheim: Chair for Software Engineering * 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: * Ralph Gerbig, Bastian Kennel - initial API and implementation and initial documentation *******************************************************************************/ package de.uni_mannheim.informatik.swt.mlm.workbench.interfaces; import de.uni_mannheim.informatik.swt.models.plm.PLM.Clabject; /** * Interface that needs to be implemented in order to offer a * Proximity Indication Service * */ public interface IProximityIndicationService { public String createContainmentProximityString(Clabject c, String expression); public String createClassificationProximityString(Clabject c, String expression); public String createGeneralizationProximityString(Clabject c, String expression); }