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

com.applitools.eyes.ElementPositionMemento Maven / Gradle / Ivy

There is a newer version: 2.34
Show newest version
package com.applitools.eyes;

/**
 * Encapsulates state for {@link ElementPositionProvider} instances.
 */
class ElementPositionMemento extends PositionMemento {
    private final Location position;

    /**
     *
     * @param l The current location to be saved.
     */
    public ElementPositionMemento(Location l) {
        position = new Location(l);
    }

    public int getX() {
        return position.getX();
    }

    public int getY() {
        return position.getY();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy