com.sshtools.javardp.orders.BoundsOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdp Show documentation
Show all versions of rdp Show documentation
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!
/* BoundsOrder.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 BoundsOrder implements Order {
private int bottom = 0;
private int left = 0;
private int right = 0;
private int top = 0;
public BoundsOrder() {
}
public int getBottom() {
return this.bottom;
}
public int getLeft() {
return this.left;
}
public int getRight() {
return this.right;
}
public int getTop() {
return this.top;
}
public void reset() {
left = 0;
right = 0;
top = 0;
bottom = 0;
}
public void setBottom(int bottom) {
this.bottom = bottom;
}
public void setLeft(int left) {
this.left = left;
}
public void setRight(int right) {
this.right = right;
}
public void setTop(int top) {
this.top = top;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy