We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Working with Hibernate in Eclipse
|
Subject: |
|
Synchronizing Files Problem |
Date: |
|
2005-03-31 14:40:51 |
From: |
|
o2ekanem
|
Response to: Synchronizing Files Problem
|
Try adding the required constructor to Tracks.java
public Track (java.lang.String _title, java.lang.String _filePath, java.sql.Time _time, java.util.Date _added, short _volume) {
super();
this.setTitle(_title);
this.setFilePath(_filePath);
this.setPlayTime(_time);
this.setAdded(_added);
this.setVolume(_volume);
initialize();
}
|