blob: 201d8ccbebe326d51a76c63939a7f61c78019ee7 [file] [log] [blame]
// IntegrationLabel
package org.eclipse.stem.core.graph;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.emf.ecore.EObject;
/**
* This interface is implemented by labels that needs to exchange information with other
* parties.
*/
public interface SimpleDataExchangeLabelValue extends EObject {
/**
* getAdditions
*
* @return double Additions
*/
public double getAdditions();
/**
* getSubstractions
*
* @return double Substractions
*/
public double getSubstractions();
}