Skip to content

Commit a647432

Browse files
committed
Javadoc
1 parent 98676a0 commit a647432

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/main/java/org/apache/commons/imaging/color/ColorCieLab.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,22 @@ public final class ColorCieLab {
8383
*/
8484
public static final ColorCieLab BLUE = new ColorCieLab(32, 79, -108);
8585

86+
/** lightness L*. */
8687
public final double l;
88+
89+
/** a* value. */
8790
public final double a;
91+
92+
/** b* value. */
8893
public final double b;
8994

95+
/**
96+
* Constructs a new instance.
97+
*
98+
* @param l perceptual lightness L*.
99+
* @param a a* value.
100+
* @param b b* value.
101+
*/
90102
public ColorCieLab(final double l, final double a, final double b) {
91103
this.l = l;
92104
this.a = a;

src/main/java/org/apache/commons/imaging/palette/ColorCountComparator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* </p>
2828
*
2929
* <p>
30-
* For example, if the comparator is created for the {@code ColorComponent.RED} channel, then it will compare the value of red of each {@code ColorCount} object
30+
* For example, if the comparator is created for the {@link ColorComponent#RED} channel, then it will compare the value of red of each {@code ColorCount} object
3131
* in the array of elements.
3232
* </p>
3333
*

0 commit comments

Comments
 (0)