Example usage for com.liferay.portal.kernel.bean BeanPropertiesUtil setBeanProperties

List of usage examples for com.liferay.portal.kernel.bean BeanPropertiesUtil setBeanProperties

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.bean BeanPropertiesUtil setBeanProperties.

Prototype

public void setBeanProperties(BeanProperties beanProperties) 

Source Link

Usage

From source file:com.liferay.dynamic.data.mapping.internal.test.util.DDMFixture.java

License:Open Source License

protected void setUpBeanPropertiesUtil() {
    _beanProperties = BeanPropertiesUtil.getBeanProperties();

    BeanPropertiesUtil beanPropertiesUtil = new BeanPropertiesUtil();

    beanPropertiesUtil.setBeanProperties(new BeanPropertiesImpl());
}

From source file:com.liferay.dynamic.data.mapping.internal.test.util.DDMFixture.java

License:Open Source License

protected void tearDownBeanPropertiesUtil() {
    BeanPropertiesUtil beanPropertiesUtil = new BeanPropertiesUtil();

    beanPropertiesUtil.setBeanProperties(_beanProperties);
}

From source file:com.liferay.dynamic.data.mapping.util.DDMFormDeepCopyTest.java

License:Open Source License

protected void setUpBeanPropertiesUtil() {
    BeanPropertiesUtil beanPropertiesUtil = new BeanPropertiesUtil();

    beanPropertiesUtil.setBeanProperties(new BeanPropertiesImpl());
}