Examples of scroll()


Examples of charva.awt.event.ScrollListener.scroll()

  if (_scrollListeners != null) {
      for (Enumeration<ScrollListener> e = _scrollListeners.elements();
        e.hasMoreElements(); ) {

    ScrollListener sl = (ScrollListener) e.nextElement();
    sl.scroll(e_);
      }
  }
    }

    /** Outputs a textual description of this component to stderr.
View Full Code Here

Examples of charva.awt.event.ScrollListener.scroll()

        if( _scrollListeners != null ) {
            for( Enumeration<ScrollListener> e = _scrollListeners.elements();
                 e.hasMoreElements(); ) {

                ScrollListener sl = e.nextElement();
                sl.scroll( e_ );
            }
        }
    }

    /**
 
View Full Code Here

Examples of charva.awt.event.ScrollListener.scroll()

  if (_scrollListeners != null) {
      for (Enumeration<ScrollListener> e = _scrollListeners.elements();
        e.hasMoreElements(); ) {

    ScrollListener sl = (ScrollListener) e.nextElement();
    sl.scroll(e_);
      }
  }
    }

    public Dimension getSize() {
View Full Code Here

Examples of com.dotcms.repackage.net.sf.hibernate.Query.scroll()

          list.add(PortletPreferencesHBMUtil.model(
              portletPreferencesHBM));
        }
      }
      else {
        ScrollableResults sr = q.scroll();

        if (sr.first() && sr.scroll(begin)) {
          for (int i = begin; i < end; i++) {
            PortletPreferencesHBM portletPreferencesHBM = (PortletPreferencesHBM)sr.get(0);
            list.add(PortletPreferencesHBMUtil.model(
View Full Code Here

Examples of com.dotcms.repackage.net.sf.hibernate.ScrollableResults.scroll()

        }
      }
      else {
        ScrollableResults sr = q.scroll();

        if (sr.first() && sr.scroll(begin)) {
          for (int i = begin; i < end; i++) {
            PortletPreferencesHBM portletPreferencesHBM = (PortletPreferencesHBM)sr.get(0);
            list.add(PortletPreferencesHBMUtil.model(
                portletPreferencesHBM));
View Full Code Here

Examples of com.vaadin.testbench.TestBenchElement.scroll()

        WebElement verticalLayout = panelScrollable.findElement(By
                .className("v-verticallayout"));
        Dimension verticalLayoutSize = verticalLayout.getSize();

        panelScrollable.scroll(verticalLayoutSize.height);

        WebElement button = verticalLayout
                .findElement(By.className("v-button"));

        button.click();
View Full Code Here

Examples of com.vaadin.testbench.commands.TestBenchElementCommands.scroll()

        WebElement window = driver.findElement(By.id(WINDOW_ID));
        WebElement scrollableElement = window.findElement(By
                .className("v-scrollable"));
        TestBenchElementCommands scrollable = testBenchElement(scrollableElement);
        scrollable.scroll(1000);
        WebElement comboBox = driver.findElement(By.id(COMBOBOX_ID));
        WebElement selectButton = driver.findElement(By
                .className("v-filterselect-button"));
        selectButton.click();
View Full Code Here

Examples of com.vaadin.testbench.commands.TestBenchElementCommands.scroll()

        WebElement bodyElement = driver.findElement(By
                .className("v-modal-window-open"));

        TestBenchElementCommands scrollable = testBenchElement(bodyElement);
        scrollable.scroll(1000);

        Thread.sleep(1000);

        compareScreen(getScreenshotBaseName());
    }
View Full Code Here

Examples of com.vaadin.testbench.commands.TestBenchElementCommands.scroll()

        TestBenchElementCommands scrollable = testBenchElement(treeTable
                .findElement(By.className("v-scrollable")));

        // scroll far enough down to drop the first row from the cache
        // but not far enough to reach the last row
        scrollable.scroll(1692);

        // wait for the scrollposition element to disappear
        waitUntilNot(ExpectedConditions.visibilityOfElementLocated(By
                .className("v-table-scrollposition")));
View Full Code Here

Examples of com.vaadin.testbench.commands.TestBenchElementCommands.scroll()

                .findElements(By.vaadin("#row[0]/col[0]")).size());
        assertEquals("elements found where there should be none", 0, treeTable
                .findElements(By.vaadin("#row[203]/col[0]")).size());

        // scroll 6000 to make sure to actually hit bottom
        scrollable.scroll(6000);

        // wait for the scrollposition element to disappear
        waitUntilNot(ExpectedConditions.visibilityOfElementLocated(By
                .className("v-table-scrollposition")));
View Full Code Here
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.