blob: e7fffcb1fd76428bb5ae8149170504c79432cfa4 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
* mwenz - Bug 325084 - Provide documentation for Patterns
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
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);
}