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

com.sshtools.javardp.orders.RectangleOrder Maven / Gradle / Ivy

Go to download

Swing RDP component based on ProperJavaRDP with some modifications to allow multiple sessions within the same runtime, and to fix some bugs and inconsistencies with newer Windows versions.

The newest version!
/* RectangleOrder.java
 * Component: ProperJavaRDP
 * 
 * Revision: $Revision: 1.1 $
 * Author: $Author: brett $
 * Date: $Date: 2011/11/28 14:13:40 $
 *
 * Copyright (c) 2005 Propero Limited
 *
 * Purpose: 
 */
package com.sshtools.javardp.orders;

public class RectangleOrder implements Order {

	public int color = 0;
	private int cx = 0;
	private int cy = 0;
	private int x = 0;
	private int y = 0;

	public RectangleOrder() {
	}

	public int getColor() {
		return this.color;
	}

	public int getCX() {
		return this.cx;
	}

	public int getCY() {
		return this.cy;
	}

	public int getX() {
		return this.x;
	}

	public int getY() {
		return this.y;
	}

	public void reset() {
		x = 0;
		y = 0;
		cx = 0;
		cy = 0;
		color = 0;
	}

	public void setColor(int color) {
		this.color = color;
	}

	public void setCX(int cx) {
		this.cx = cx;
	}

	public void setCY(int cy) {
		this.cy = cy;
	}

	public void setX(int x) {
		this.x = x;
	}

	public void setY(int y) {
		this.y = y;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy