* @param delimiter Delimiter
* @param size Size of array
* @return Array from tokenized string
- * @todo Get rid of size parameter
+ * TODO Get rid of size parameter
*/
protected String[] getArrayFromString (final String str, final String delimiter, final int size) {
// Trace message
object = null;
} else {
// Hard-coded "cast" again ... :-(
- // @TODO Can't we get rid of this???
+ // TODO Can't we get rid of this???
switch (type.getSimpleName()) {
case "Long": // Long object //NOI18N
object = Long.parseLong((String) value);
*
* @param object Other possible contact class
* @return Whether both contacts are same
- * @todo Needs a lot improvements
+ * TODO Needs a lot improvements
*/
@Override
public boolean equals (final Object object) {
// Try to cast
Contact contact = (Contact) object;
- // Now test some data @todo Definedly needs improvement
+ // Now test some data TODO Definedly needs improvement
return ((this.getGender().equals(contact.getGender()))
&& (this.getFirstName().toLowerCase().equals(contact.getFirstName().toLowerCase()))
&& (this.getFamilyName().toLowerCase().equals(contact.getFamilyName().toLowerCase())));
*
* @param dataset A dataset instance
* @return An instance of Result
- * @todo Support more than one record being inserted in a separate method
+ * TODO Support more than one record being inserted in a separate method
*/
@Override
public Result<? extends Storable> doInsertDataSet (final Map<String, Object> dataset) throws SQLException {
@Override
public void doShutdown () {
// Shutdown this manager, for now nothing
- // @TODO Maybe add something here?
+ // TODO Maybe add something here?
}
@Override