blob: f9fa582d6f83b7013bc067715104486c91d9cbda [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2005, 2010 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
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.graphiti.features.context.impl;
import org.eclipse.graphiti.features.context.ISplitConnectionContext;
import org.eclipse.graphiti.internal.features.context.impl.base.DefaultContext;
import org.eclipse.graphiti.mm.pictograms.Connection;
import org.eclipse.graphiti.mm.pictograms.Shape;
/**
* The Class SplitConnectionContext.
*/
public class SplitConnectionContext extends DefaultContext implements ISplitConnectionContext {
private Connection connection;
private Shape shape;
/**
* Creates a new {@link SplitConnectionContext}.
*
* @param connection
* the connection
* @param shape
* the shape
*/
public SplitConnectionContext(Connection connection, Shape shape) {
super();
this.connection = connection;
this.shape = shape;
}
public Connection getConnection() {
return this.connection;
}
public Shape getShape() {
return this.shape;
}
@Override
public String toString() {
String ret = super.toString();
return ret + " connection: " + getConnection() + " shape: " + getShape(); //$NON-NLS-1$ //$NON-NLS-2$
}
}