Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[java] Add nullness for interactions #15118

Merged
merged 6 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions java/src/org/openqa/selenium/interactions/Coordinates.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@

package org.openqa.selenium.interactions;

import org.jspecify.annotations.NullMarked;
import org.openqa.selenium.Point;

/**
* Provides coordinates of an element for advanced interactions. Note that some coordinates (such as
* screen coordinates) are evaluated lazily since the element may have to be scrolled into view.
*/
@NullMarked
public interface Coordinates {

/**
Expand Down
2 changes: 2 additions & 0 deletions java/src/org/openqa/selenium/interactions/Interactive.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@
package org.openqa.selenium.interactions;

import java.util.Collection;
import org.jspecify.annotations.NullMarked;

/**
* Indicates that a class can be used with the W3C WebDriver <a
* href="https://www.w3.org/TR/webdriver/#actions">Actions commands</a>.
*/
@NullMarked
public interface Interactive {
void perform(Collection<Sequence> actions);

Expand Down
10 changes: 7 additions & 3 deletions java/src/org/openqa/selenium/interactions/SourceType.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,24 @@

package org.openqa.selenium.interactions;

import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;

/** One of the allowing types for an {@link InputSource}. */
@NullMarked
public enum SourceType {
KEY("key"),
NONE(null),
POINTER("pointer"),
WHEEL("wheel");

private final String type;
private final @Nullable String type;

SourceType(String type) {
SourceType(@Nullable String type) {
this.type = type;
}

public String getType() {
public @Nullable String getType() {
return type;
}
}