edu.sc.seis.TauP.ArrivalTableModel Maven / Gradle / Ivy
package edu.sc.seis.TauP;
import java.util.ArrayList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
/*
* The TauP Toolkit: Flexible Seismic Travel-Time and Raypath Utilities.
* Copyright (C) 1998-2000 University of South Carolina
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 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 General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place - Suite 330, Boston, MA 02111-1307, USA.
*
* The current version can be found at http://www.seis.sc.edu
*
* Bug reports and comments should be directed to H. Philip Crotwell,
* [email protected] or Tom Owens, [email protected]
*
*/
/**
* @author H. Philip Crotwell
* @version 1.1.3 Wed Jul 18 15:00:35 GMT 2001
*
*
*
*/
public class ArrivalTableModel extends AbstractTableModel {
protected List arrivals = new ArrayList();
public ArrivalTableModel() {}
public int getRowCount() {
return arrivals.size();
}
public int getColumnCount() {
return 8;
}
public Object getValueAt(int row, int col) {
switch(col){
case 0:
return Outputs.formatDistance(arrivals.get(row).getModuloDistDeg());
case 1:
return Outputs.formatDistance(arrivals.get(row).getModuloDist()
* arrivals.get(row).getPhase()
.getTauModel()
.getRadiusOfEarth());
case 2:
return Outputs.formatDepth(arrivals.get(row).getSourceDepth());
case 3:
return arrivals.get(row).getName();
case 4:
return Outputs.formatTime(arrivals.get(row).getTime());
case 5:
return Outputs.formatRayParam(Math.PI / 180.0
* arrivals.get(row).getRayParam());
case 6:
return Outputs.formatDistance(arrivals.get(row).getDistDeg());
case 7:
return (arrivals.get(row).getName()
.equals(arrivals.get(row).getPuristName()) ? "=" : "*");
case 8:
return arrivals.get(row).getPuristName();
default:
return "";
}
}
public String getColumnName(int col) {
switch(col){
case 0:
return "Dist";
case 1:
return "Dist (km)";
case 2:
return "Depth";
case 3:
return "Name";
case 4:
return "Time";
case 5:
return "Ray Param";
case 6:
return "Purist Dist";
case 7:
return "";
case 8:
return "Purist Name";
default:
return "";
}
}
public void setArrivals(List arrivals) {
this.arrivals = arrivals;
fireTableDataChanged();
}
}