Package org.rstudio.studio.client.workbench.views.environment.view

Examples of org.rstudio.studio.client.workbench.views.environment.view.EnvironmentClientState


         @Override
         protected void onInit(JsObject value)
         {
            if (value != null)
            {
               EnvironmentClientState clientState = value.cast();
               view_.setScrollPosition(clientState.getScrollPosition());
               view_.setExpandedObjects(clientState.getExpandedObjects());
               view_.setSort(clientState.getSortColumn(),
                             clientState.getAscendingSort());
            }
         }

         @Override
         protected JsObject getValue()
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.workbench.views.environment.view.EnvironmentClientState

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.