Package cn.com.template.factory

Source Code of cn.com.template.factory.WmsComponentFactory

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package cn.com.template.factory;

import cn.com.elements.component.ViewsComponent;
import cn.com.elements.component.style.wms.WmsActionComponent;
import cn.com.elements.component.style.wms.WmsConditionComponent;
import cn.com.elements.component.style.wms.WmsTableComponent;

/**
*
* @author kete
*/
public class WmsComponentFactory implements ComponentFactory {

    @Override
    public ViewsComponent getConditionComponent() {

        return new WmsConditionComponent();
    }

    @Override
    public ViewsComponent getTableComponent() {
        return new WmsTableComponent();
    }

    @Override
    public ViewsComponent getActionComponent() {

        return new WmsActionComponent();
    }
}
TOP

Related Classes of cn.com.template.factory.WmsComponentFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.