first commit
This commit is contained in:
27
hrmsEjb/jxl/format/RGB.java
Normal file
27
hrmsEjb/jxl/format/RGB.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package jxl.format;
|
||||
|
||||
public final class RGB {
|
||||
private int red;
|
||||
|
||||
private int green;
|
||||
|
||||
private int blue;
|
||||
|
||||
public RGB(int r, int g, int b) {
|
||||
this.red = r;
|
||||
this.green = g;
|
||||
this.blue = b;
|
||||
}
|
||||
|
||||
public int getRed() {
|
||||
return this.red;
|
||||
}
|
||||
|
||||
public int getGreen() {
|
||||
return this.green;
|
||||
}
|
||||
|
||||
public int getBlue() {
|
||||
return this.blue;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user