diff options
Diffstat (limited to 'src/main/java/com/c2kernel/gui/graph/controller/Selection.java')
| -rw-r--r-- | src/main/java/com/c2kernel/gui/graph/controller/Selection.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/main/java/com/c2kernel/gui/graph/controller/Selection.java b/src/main/java/com/c2kernel/gui/graph/controller/Selection.java deleted file mode 100644 index 3700e44..0000000 --- a/src/main/java/com/c2kernel/gui/graph/controller/Selection.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.c2kernel.gui.graph.controller;
-
-import com.c2kernel.graph.model.DirectedEdge;
-import com.c2kernel.graph.model.Vertex;
-
-
-
-public class Selection
-{
- // Either a single edge can be selected or
- // one or more vertices can be selected.
- // It is impossible to select an edge and a
- // vertex at the same time.
- public DirectedEdge mEdge = null;
- public Vertex[] mVertices = null;
- public int mTopLeftX = 0;
- public int mTopLeftY = 0;
- public int mBottomRightX = 0;
- public int mBottomRightY = 0;
-
-
- public Selection(DirectedEdge edge,
- Vertex[] vertices,
- int topLeftX,
- int topLeftY,
- int bottomRightX,
- int bottomRightY)
- {
- mEdge = edge;
- mVertices = vertices;
- mTopLeftX = topLeftX;
- mTopLeftY = topLeftY;
- mBottomRightX = bottomRightX;
- mBottomRightY = bottomRightY;
- }
-}
|
