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

com.applitools.eyes.selenium.Borders Maven / Gradle / Ivy

The newest version!
package com.applitools.eyes.selenium;

public class Borders {
    private int left;
    private int top;
    private int right;
    private int bottom;

    public Borders(int left, int top, int right, int bottom) {
        this.left = left;
        this.top = top;
        this.right = right;
        this.bottom = bottom;
    }

    public int getLeft() {
        return left;
    }

    public int getTop() {
        return top;
    }

    public int getRight() {
        return right;
    }

    public int getBottom() {
        return bottom;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy