blob: 8f389524c7463e6699cd4df6653f19983a9f59bd [file] [log] [blame]
// RelativePhysicalRelationshipLabel.java
package org.eclipse.stem.definitions.labels;
/*******************************************************************************
* Copyright (c) 2006 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
*******************************************************************************/
/**
* This interface is an EMF definition of a class that represents a label for an
* Edge that represents a relatvie physical relationship between two nodes.
*
* @model
*/
public interface RelativePhysicalRelationshipLabel extends
PhysicalRelationshipLabel {
/**
* This is the segment of the type URI that prefixes all other segments in a
* relative physical relationship label type URI.
*/
String URI_TYPE_RELATIVE_PHYSICAL_RELATIONSHIP_LABEL_SEGMENT = URI_TYPE_PHYSICAL_RELATIONSHIP_LABEL_SEGMENT
+ "/relative";
/**
* @model volatile="true" transient="true" changeable="false"
* resolveProxies="false"
*/
RelativePhysicalRelationshipLabelValue getCurrentRelationship();
} // RelativePhysicalRelationshipLabel