Skip to main content
summaryrefslogtreecommitdiffstats
blob: fd68117d251ee970520251ee0e74bd6e509878dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*******************************************************************************
 * Copyright (c) 2006, 2012 Obeo.
 * 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:
 *     Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.emf.compare.diagram.diagramdiff;

import java.util.List;

import org.eclipse.emf.compare.diff.metamodel.UpdateAttribute;
import org.eclipse.gmf.runtime.notation.Node;

/**
 * Overriding of {@link DiagramMoveNode} for specific interface.
 * 
 * @author Cedric Notot <a href="mailto:cedric.notot@obeo.fr">cedric.notot@obeo.fr</a>
 */
public interface BusinessDiagramMoveNode extends DiagramMoveNode, BusinessDiffExtension {

	/**
	 * Get the differences hidden by this extension.
	 * 
	 * @return The list of the hidden differences.
	 */
	List<UpdateAttribute> getUpdateAttributeLocationDiffs();

	/**
	 * Get the left node.
	 * 
	 * @return The node.
	 */
	Node getLeftNode();

	/**
	 * Get the right node.
	 * 
	 * @return The node.
	 */
	Node getRightNode();

	/**
	 * Get the left x coordinates.
	 * 
	 * @return left X.
	 */
	int getLeftLocationX();

	/**
	 * Get the left y coordinates.
	 * 
	 * @return left Y.
	 */
	int getLeftLocationY();

	/**
	 * Get the right x location.
	 * 
	 * @return right X.
	 */
	int getRightLocationX();

	/**
	 * Get the right y location.
	 * 
	 * @return right Y.
	 */
	int getRightLocationY();

}

Back to the top