Example usage for com.liferay.portal.kernel.util DateFormatFactoryUtil setDateFormatFactory

List of usage examples for com.liferay.portal.kernel.util DateFormatFactoryUtil setDateFormatFactory

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util DateFormatFactoryUtil setDateFormatFactory.

Prototype

public void setDateFormatFactory(DateFormatFactory fastDateFormatFactory) 

Source Link

Usage

From source file:com.liferay.document.library.repository.cmis.search.BaseCmisSearchQueryBuilderTest.java

License:Open Source License

protected void setUpDateFormatFactoryUtil() {
    String pattern = _INDEX_DATE_FORMAT_PATTERN;

    Mockito.doReturn(pattern).when(_props).get(PropsKeys.INDEX_DATE_FORMAT_PATTERN);

    DateFormatFactoryUtil dateFormatFactoryUtil = new DateFormatFactoryUtil();

    dateFormatFactoryUtil.setDateFormatFactory(createDateFormatFactory(pattern));
}

From source file:com.liferay.dynamic.data.mapping.render.DDMFormFieldValueRendererTest.java

License:Open Source License

protected void setUpDateFormatFactoryUtil() {
    DateFormatFactoryUtil dateFormatFactoryUtil = new DateFormatFactoryUtil();

    dateFormatFactoryUtil.setDateFormatFactory(new DateFormatFactoryImpl());
}