All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.swing.fixture.JSplitPaneFixture Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 * Copyright 2012-2018 the original author or authors.
 */
package org.assertj.swing.fixture;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.swing.JSplitPane;

import org.assertj.swing.core.Robot;
import org.assertj.swing.driver.JSplitPaneDriver;

/**
 * Supports functional testing of {@code JSplitPane}s.
 * 
 * @author Yvonne Wang
 * @author Alex Ruiz
 */
public class JSplitPaneFixture extends
    AbstractJPopupMenuInvokerFixture {
  /**
   * Creates a new {@link JSplitPaneFixture}.
   * 
   * @param robot performs simulation of user events on the given {@code JSplitPane}.
   * @param target the {@code JSplitPane} to be managed by this fixture.
   * @throws NullPointerException if {@code robot} is {@code null}.
   * @throws NullPointerException if {@code target} is {@code null}.
   */
  public JSplitPaneFixture(@Nonnull Robot robot, @Nonnull JSplitPane target) {
    super(JSplitPaneFixture.class, robot, target);
  }

  /**
   * Creates a new {@link JSplitPaneFixture}.
   * 
   * @param robot performs simulation of user events on a {@code JSplitPane}.
   * @param spinnerName the name of the {@code JSplitPane} to find using the given {@code Robot}.
   * @throws org.assertj.swing.exception.ComponentLookupException if a matching {@code JSplitPane} could not be found.
   * @throws org.assertj.swing.exception.ComponentLookupException if more than one matching {@code JSplitPane} is found.
   */
  public JSplitPaneFixture(@Nonnull Robot robot, @Nullable String spinnerName) {
    super(JSplitPaneFixture.class, robot, spinnerName, JSplitPane.class);
  }

  @Override
  @Nonnull protected JSplitPaneDriver createDriver(@Nonnull Robot robot) {
    return new JSplitPaneDriver(robot);
  }

  /**
   * 

* Simulates a user moving the divider of this fixture's {@code JSplitPane}. *

*

* Since 1.2, this method respects the minimum and maximum values of the left and right components inside this * fixture's {@code JSplitPane}. *

* * @param location the location to move the divider to. * @return this fixture. * @throws IllegalStateException if this fixture's {@code JSplitPane} is disabled. * @throws IllegalStateException if this fixture's {@code JSplitPane} is not showing on the screen. */ @Nonnull public JSplitPaneFixture moveDividerTo(int location) { driver().moveDividerTo(target(), location); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy