/**
* Copyright (c)2010-2011 Enterprise Website Content Management System(EWCMS), All rights reserved.
* EWCMS PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
* http://www.ewcms.com
*/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.ewcms.common.convert;
/**
* 字符串和日期类型相互转换
*
* @author WangWei
*/
public interface ConvertDateable<T> extends Convertable<T>{
/**
* 设置日期格式
*
* @param formate
*/
public void setFormat(String format);
}