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 | * DataSetEvent.java |
---|
19 | * Copyright (C) 2002 University of Waikato, Hamilton, New Zealand |
---|
20 | * |
---|
21 | */ |
---|
22 | |
---|
23 | package weka.gui.beans; |
---|
24 | |
---|
25 | import weka.core.Instances; |
---|
26 | |
---|
27 | import java.util.EventObject; |
---|
28 | |
---|
29 | /** |
---|
30 | * Event encapsulating a data set |
---|
31 | * |
---|
32 | * @author <a href="mailto:mhall@cs.waikato.ac.nz">Mark Hall</a> |
---|
33 | * @version $Revision: 1.4 $ |
---|
34 | * @see EventObject |
---|
35 | */ |
---|
36 | public class DataSetEvent |
---|
37 | extends EventObject { |
---|
38 | |
---|
39 | /** for serialization */ |
---|
40 | private static final long serialVersionUID = -5111218447577318057L; |
---|
41 | |
---|
42 | private Instances m_dataSet; |
---|
43 | private boolean m_structureOnly; |
---|
44 | |
---|
45 | public DataSetEvent(Object source, Instances dataSet) { |
---|
46 | super(source); |
---|
47 | m_dataSet = dataSet; |
---|
48 | if (m_dataSet != null && m_dataSet.numInstances() == 0) { |
---|
49 | m_structureOnly = true; |
---|
50 | } |
---|
51 | } |
---|
52 | |
---|
53 | /** |
---|
54 | * Return the instances of the data set |
---|
55 | * |
---|
56 | * @return an <code>Instances</code> value |
---|
57 | */ |
---|
58 | public Instances getDataSet() { |
---|
59 | return m_dataSet; |
---|
60 | } |
---|
61 | |
---|
62 | /** |
---|
63 | * Returns true if the encapsulated instances |
---|
64 | * contain just header information |
---|
65 | * |
---|
66 | * @return true if only header information is |
---|
67 | * available in this DataSetEvent |
---|
68 | */ |
---|
69 | public boolean isStructureOnly() { |
---|
70 | return m_structureOnly; |
---|
71 | } |
---|
72 | } |
---|