| 1 | /* |
|---|
| 2 | * This program is free software; you can redistribute it and/or modify |
|---|
| 3 | * it under the terms of the GNU General Public License as published by |
|---|
| 4 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 5 | * (at your option) any later version. |
|---|
| 6 | * |
|---|
| 7 | * This program is distributed in the hope that it will be useful, |
|---|
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 10 | * GNU General Public License for more details. |
|---|
| 11 | * |
|---|
| 12 | * You should have received a copy of the GNU General Public License |
|---|
| 13 | * along with this program; if not, write to the Free Software |
|---|
| 14 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 15 | */ |
|---|
| 16 | |
|---|
| 17 | /* |
|---|
| 18 | * Copyright (C) 2004 |
|---|
| 19 | * & Matthias Schubert (schubert@dbs.ifi.lmu.de) |
|---|
| 20 | * & Zhanna Melnikova-Albrecht (melnikov@cip.ifi.lmu.de) |
|---|
| 21 | * & Rainer Holzmann (holzmann@cip.ifi.lmu.de) |
|---|
| 22 | */ |
|---|
| 23 | |
|---|
| 24 | package weka.clusterers.forOPTICSAndDBScan.Utils; |
|---|
| 25 | |
|---|
| 26 | import weka.core.RevisionHandler; |
|---|
| 27 | import weka.core.RevisionUtils; |
|---|
| 28 | |
|---|
| 29 | /** |
|---|
| 30 | * <p> |
|---|
| 31 | * UpdateQueueElement.java <br/> |
|---|
| 32 | * Authors: Rainer Holzmann, Zhanna Melnikova-Albrecht, Matthias Schubert <br/> |
|---|
| 33 | * Date: Aug 31, 2004 <br/> |
|---|
| 34 | * Time: 6:43:18 PM <br/> |
|---|
| 35 | * $ Revision 1.4 $ <br/> |
|---|
| 36 | * </p> |
|---|
| 37 | * |
|---|
| 38 | * @author Matthias Schubert (schubert@dbs.ifi.lmu.de) |
|---|
| 39 | * @author Zhanna Melnikova-Albrecht (melnikov@cip.ifi.lmu.de) |
|---|
| 40 | * @author Rainer Holzmann (holzmann@cip.ifi.lmu.de) |
|---|
| 41 | * @version $Revision: 1.3 $ |
|---|
| 42 | */ |
|---|
| 43 | public class UpdateQueueElement |
|---|
| 44 | implements RevisionHandler { |
|---|
| 45 | |
|---|
| 46 | /** |
|---|
| 47 | * Holds the priority for the object (in this case: the reachability-distance) |
|---|
| 48 | */ |
|---|
| 49 | private double priority; |
|---|
| 50 | |
|---|
| 51 | /** |
|---|
| 52 | * Holds the original object |
|---|
| 53 | */ |
|---|
| 54 | private Object o; |
|---|
| 55 | |
|---|
| 56 | /** |
|---|
| 57 | * Holds the key for this object |
|---|
| 58 | */ |
|---|
| 59 | private String objectKey; |
|---|
| 60 | |
|---|
| 61 | // ***************************************************************************************************************** |
|---|
| 62 | // constructors |
|---|
| 63 | // ***************************************************************************************************************** |
|---|
| 64 | public UpdateQueueElement(double priority, Object o, String objectKey) { |
|---|
| 65 | this.priority = priority; |
|---|
| 66 | this.o = o; |
|---|
| 67 | this.objectKey = objectKey; |
|---|
| 68 | } |
|---|
| 69 | |
|---|
| 70 | // ***************************************************************************************************************** |
|---|
| 71 | // methods |
|---|
| 72 | // ***************************************************************************************************************** |
|---|
| 73 | |
|---|
| 74 | /** |
|---|
| 75 | * Returns the priority for this object |
|---|
| 76 | * @return priority |
|---|
| 77 | */ |
|---|
| 78 | public double getPriority() { |
|---|
| 79 | return priority; |
|---|
| 80 | } |
|---|
| 81 | |
|---|
| 82 | /** |
|---|
| 83 | * Returns the object |
|---|
| 84 | * @return |
|---|
| 85 | */ |
|---|
| 86 | public Object getObject() { |
|---|
| 87 | return o; |
|---|
| 88 | } |
|---|
| 89 | |
|---|
| 90 | /** |
|---|
| 91 | * Returns the key |
|---|
| 92 | * @return objectKey |
|---|
| 93 | */ |
|---|
| 94 | public String getObjectKey() { |
|---|
| 95 | return objectKey; |
|---|
| 96 | } |
|---|
| 97 | |
|---|
| 98 | /** |
|---|
| 99 | * Returns the revision string. |
|---|
| 100 | * |
|---|
| 101 | * @return the revision |
|---|
| 102 | */ |
|---|
| 103 | public String getRevision() { |
|---|
| 104 | return RevisionUtils.extract("$Revision: 1.3 $"); |
|---|
| 105 | } |
|---|
| 106 | } |
|---|