blob: 63c1cecec8476fe7f7ad592b3a54e87dc5392a81 [file] [log] [blame]
/*
* Copyright (C) 2005 db4objects Inc. http://www.db4o.com
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* db4objects - Initial API and implementation
*/
package org.eclipse.jface.databinding.converterfunctions;
import java.util.Date;
import org.eclipse.jface.databinding.converterfunction.IConversionFunction;
/**
* Convert a Java.util.Date to a String using the current locale. Null date
* values are converted to an empty string.
*
* @since 3.2
*/
public class ConvertDate2String extends DateConversionSupport implements IConversionFunction {
public Object convert(Object source) {
if (source != null)
return format((Date)source);
return ""; //$NON-NLS-1$
}
}