Changeset 23 for gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/java
- Timestamp:
- 08/24/11 14:54:41 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/java/gssim/gssimstudio/flex/app/editor/GanntChart.java
r22 r23 164 164 } 165 165 166 private void closeConnection(Connection connection, ResourceChartModel model) {166 private void closeConnection(Connection connection, GanntChartModel model) { 167 167 String error = model.getError(); 168 168 … … 183 183 } 184 184 185 private void setSqlError(String name, ResourceChartModel model, Exception e) {185 private void setSqlError(String name, GanntChartModel model, Exception e) { 186 186 setError(name + ": an SQL exception occured while trying retrieve data from database", model, e); 187 187 } 188 188 189 private void setDbConnectionError( ResourceChartModel model, Exception e) {189 private void setDbConnectionError(GanntChartModel model, Exception e) { 190 190 setError("An exception occured while trying to create MySQLDAOFactory", model, e); 191 191 } 192 192 193 private void setError(String messageForUser, ResourceChartModel model, Exception e) {193 private void setError(String messageForUser, GanntChartModel model, Exception e) { 194 194 195 195 String error = messageForUser;
Note: See TracChangeset
for help on using the changeset viewer.