summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/graph/model/Selection.java
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2012-06-29 16:20:11 +0200
committerAndrew Branson <andrew.branson@cern.ch>2012-06-29 16:20:11 +0200
commit11eb9557a35e17450c0aefb758471f1ff3148336 (patch)
tree10251f415012336189dd8a7f4385434ad807d7ad /src/main/java/com/c2kernel/graph/model/Selection.java
parentbc4d8f9fca275eceee86e38c52975461ca504d07 (diff)
Pull remaining graph GUI components into cristal-gui
Diffstat (limited to 'src/main/java/com/c2kernel/graph/model/Selection.java')
-rw-r--r--src/main/java/com/c2kernel/graph/model/Selection.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/main/java/com/c2kernel/graph/model/Selection.java b/src/main/java/com/c2kernel/graph/model/Selection.java
deleted file mode 100644
index dcc7b46..0000000
--- a/src/main/java/com/c2kernel/graph/model/Selection.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.c2kernel.graph.model;
-
-import java.io.Serializable;
-
-
-
-public class Selection implements Serializable
-{
- // 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;
- }
-}