com.sshtools.javardp.orders.Pen 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!
/* Pen.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 Pen {
private int color = 0;
private int style = 0;
private int width = 0;
public Pen() {
}
public int getColor() {
return this.color;
}
public int getStyle() {
return this.style;
}
public int getWidth() {
return this.width;
}
public void reset() {
style = 0;
width = 0;
color = 0;
}
public void setColor(int color) {
this.color = color;
}
public void setStyle(int style) {
this.style = style;
}
public void setWidth(int width) {
this.width = width;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy