You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.7 KiB
Java

/* */ package com.dowse.devicesdk.rv1126;
/* */
/* */ public class ImageParam
/* */ {
/* */ private int brightness;
/* */ private int contrast;
/* */ private int hue;
/* */ private int saturation;
/* */ private int sharpness;
/* */
/* */ public int getBrightness()
/* */ {
/* 16 */ return this.brightness;
/* */ }
/* */
/* */ public void setBrightness(int brightness) {
/* 20 */ this.brightness = brightness;
/* */ }
/* */
/* */ public int getContrast() {
/* 24 */ return this.contrast;
/* */ }
/* */
/* */ public void setContrast(int contrast) {
/* 28 */ this.contrast = contrast;
/* */ }
/* */
/* */ public int getHue() {
/* 32 */ return this.hue;
/* */ }
/* */
/* */ public void setHue(int hue) {
/* 36 */ this.hue = hue;
/* */ }
/* */
/* */ public int getSaturation() {
/* 40 */ return this.saturation;
/* */ }
/* */
/* */ public void setSaturation(int saturation) {
/* 44 */ this.saturation = saturation;
/* */ }
/* */
/* */ public int getSharpness() {
/* 48 */ return this.sharpness;
/* */ }
/* */
/* */ public void setSharpness(int sharpness) {
/* 52 */ this.sharpness = sharpness;
/* */ }
/* */
/* */ public String toString()
/* */ {
/* 57 */ return "ImageParam{brightness=" + this.brightness + ", contrast=" + this.contrast + ", hue=" + this.hue + ", saturation=" + this.saturation + ", sharpness=" + this.sharpness + '}';
/* */ }
/* */ }
/* Location: C:\Users\JingJing\Desktop\i1aar\dsdevicesdk1.3\classes.jar
* Qualified Name: com.dowse.devicesdk.rv1126.ImageParam
* JD-Core Version: 0.6.0
*/