blob: e948f9d9b9054a89286140df0fcafa22c466fc95 [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2005, 2012 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
* mwenz - Bug 325084 - Provide documentation for Patterns
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.graphiti.pattern;
import org.eclipse.graphiti.features.IFeatureProvider;
import org.eclipse.graphiti.func.IAdd;
import org.eclipse.graphiti.func.ICreateConnection;
/**
* The Interface IConnectionPattern marks a pattern for handling connections.
* Please see the information in {@link AbstractConnectionPattern}.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients. Extend
* {@link AbstractConnectionPattern} instead
*/
public interface IConnectionPattern extends IAdd, ICreateConnection {
/**
* Sets the feature provider.
*
* @param fp
* the new feature provider
*/
void setFeatureProvider(IFeatureProvider fp);
}