- Timestamp:
- 03/12/08 12:10:08 (9 months ago)
- Location:
- branches/3.0-Beta2.3/components/bioformats-omero
- Files:
-
- 1 added
- 2 removed
- 2 modified
-
.classpath (modified) (3 diffs)
-
lib/jcalendar-1.3.2.jar (deleted)
-
lib/swingx-2007_09_16.jar (added)
-
src/ome/formats/importer/HistoryTable.java (modified) (1 diff)
-
src/omero (deleted)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-Beta2.3/components/bioformats-omero/.classpath
r2228 r2295 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 <classpathentry kind="src" path="test"/>4 <classpathentry kind="src" path="target/generated/resources"/>5 3 <classpathentry kind="src" path="src"/> 6 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 7 <classpathentry kind="src" path="resources"/>8 5 <classpathentry kind="lib" path="lib/TableLayout.jar"/> 9 6 <classpathentry kind="lib" path="lib/spring-2.0.6.jar"/> … … 26 23 <classpathentry kind="lib" path="lib/common-3.0-Beta2.3.jar"/> 27 24 <classpathentry kind="lib" path="lib/client-3.0-Beta2.3.jar"/> 28 <classpathentry kind="lib" path="lib/jcalendar-1.3.2.jar"/>29 25 <classpathentry kind="lib" path="lib/hsqldb.jar"/> 30 26 <classpathentry kind="lib" path="lib/jai_imageio.jar"/> … … 34 30 <classpathentry kind="lib" path="lib/swing-layout.jar"/> 35 31 <classpathentry kind="lib" path="lib/netcdf-4.0.jar"/> 32 <classpathentry kind="lib" path="lib/bufr-1.1.00.jar"/> 33 <classpathentry kind="lib" path="lib/grib-5.1.03.jar"/> 34 <classpathentry kind="lib" path="lib/slf4j-jdk14.jar"/> 35 <classpathentry kind="lib" path="lib/swingx-2007_09_16.jar"/> 36 36 <classpathentry kind="output" path="bin"/> 37 37 </classpath> -
branches/3.0-Beta2.3/components/bioformats-omero/src/ome/formats/importer/HistoryTable.java
r2294 r2295 516 516 if (oldDatasetID != datasetID) 517 517 { 518 oldDatasetID = datasetID; 519 datasetName = store.getDatasetName(rs.getLong("datasetID")); 518 try 519 { 520 oldDatasetID = datasetID; 521 datasetName = store.getDatasetName(rs.getLong("datasetID")); 522 } catch (ome.conditions.InternalException e) 523 { 524 String message = "There was an error accessing one of the dataset/projects\n" + 525 "you requested on the OMERO server. Your connection to the\n" + 526 "server may have been severed, or your dataset/project may\n" + 527 "have been deleted."; 528 JOptionPane.showMessageDialog(this, message, "Unable to Complete Request", JOptionPane.WARNING_MESSAGE); 529 } 520 530 } 521 531
