Package com.odb.view.dashboard.client.dto

Examples of com.odb.view.dashboard.client.dto.ViewConfig


     *
     * @param viewConfiguration the view configuration
     * @return the client view config
     */
    public static ViewConfig getClientViewConfig(ViewConfiguration viewConfiguration){
      ViewConfig viewConfig= new ViewConfig();
      viewConfig.setDisplayed(viewConfiguration.isDisplayed());
    viewConfig.setStartX(viewConfiguration.getStartX());
    viewConfig.setStartY(viewConfiguration.getStartY());
    viewConfig.setViewHeight(viewConfiguration.getViewHeight());
    viewConfig.setViewWidth(viewConfiguration.getViewWidth());
    viewConfig.setViewLocationID(viewConfiguration.getViewLocationID());
    return viewConfig;
    }
View Full Code Here

TOP

Related Classes of com.odb.view.dashboard.client.dto.ViewConfig

Copyright © 2018 www.massapicom. 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.