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

Holmos.webtest.element.property.Location Maven / Gradle / Ivy

There is a newer version: 1.0.2u10
Show newest version
package Holmos.webtest.element.property;
/**只是元素的在页面上的位置,此元素的左上角相对与页面的左上角的位置
 * @author 吴银龙(15857164387)
 * */
public class Location {
	private int xLocation;
	private int yLocation;
	public int getxLocation() {
		return xLocation;
	}
	public void setxLocation(int xLocation) {
		this.xLocation = xLocation;
	}
	public int getyLocation() {
		return yLocation;
	}
	public void setyLocation(int yLocation) {
		this.yLocation = yLocation;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy