summaryrefslogtreecommitdiff
path: root/src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java')
-rw-r--r--src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java54
1 files changed, 24 insertions, 30 deletions
diff --git a/src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java b/src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java
index 0ea59547..085fc262 100644
--- a/src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java
+++ b/src/de/lmu/ifi/dbs/elki/visualization/gui/overview/DetailViewSelectedEvent.java
@@ -1,26 +1,27 @@
package de.lmu.ifi.dbs.elki.visualization.gui.overview;
+
/*
-This file is part of ELKI:
-Environment for Developing KDD-Applications Supported by Index-Structures
+ This file is part of ELKI:
+ Environment for Developing KDD-Applications Supported by Index-Structures
-Copyright (C) 2011
-Ludwig-Maximilians-Universität München
-Lehr- und Forschungseinheit für Datenbanksysteme
-ELKI Development Team
+ Copyright (C) 2011
+ Ludwig-Maximilians-Universität München
+ Lehr- und Forschungseinheit für Datenbanksysteme
+ ELKI Development Team
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU Affero General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU Affero General Public License for more details.
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
-You should have received a copy of the GNU Affero General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
import java.awt.event.ActionEvent;
@@ -44,14 +45,9 @@ public class DetailViewSelectedEvent extends ActionEvent {
OverviewPlot overview;
/**
- * X Coordinate
- */
- double x;
-
- /**
- * X Coordinate
+ * Plot item selected
*/
- double y;
+ PlotItem it;
/**
* Constructor. To be called by OverviewPlot only!
@@ -60,14 +56,12 @@ public class DetailViewSelectedEvent extends ActionEvent {
* @param id ID
* @param command command that was invoked
* @param modifiers modifiers
- * @param x x click
- * @param y y click
+ * @param it Plot item selected
*/
- public DetailViewSelectedEvent(OverviewPlot source, int id, String command, int modifiers, double x, double y) {
+ public DetailViewSelectedEvent(OverviewPlot source, int id, String command, int modifiers, PlotItem it) {
super(source, id, command, modifiers);
this.overview = source;
- this.x = x;
- this.y = y;
+ this.it = it;
}
/**
@@ -76,6 +70,6 @@ public class DetailViewSelectedEvent extends ActionEvent {
* @return materialized detail plot
*/
public DetailView makeDetailView() {
- return overview.makeDetailView(x, y);
+ return overview.makeDetailView(it);
}
} \ No newline at end of file