X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FCellAttributes.java;h=ad065254b48a08ed57c06909f6ceb4627cd6a3ff;hb=91c9a8376f979d2b3df43f14519a30a183d332c5;hp=d1aea2cfded151f64b7fab265f48e328afa1ebd7;hpb=e826b451baf0d1e66d09ce03a6fefee2eb8386f5;p=fanfix.git diff --git a/src/jexer/bits/CellAttributes.java b/src/jexer/bits/CellAttributes.java index d1aea2c..ad06525 100644 --- a/src/jexer/bits/CellAttributes.java +++ b/src/jexer/bits/CellAttributes.java @@ -45,7 +45,7 @@ public class CellAttributes { * * @return bold value */ - public final boolean getBold() { + public final boolean isBold() { return bold; } @@ -68,7 +68,7 @@ public class CellAttributes { * * @return blink value */ - public final boolean getBlink() { + public final boolean isBlink() { return blink; } @@ -91,7 +91,7 @@ public class CellAttributes { * * @return reverse value */ - public final boolean getReverse() { + public final boolean isReverse() { return reverse; } @@ -114,7 +114,7 @@ public class CellAttributes { * * @return underline value */ - public final boolean getUnderline() { + public final boolean isUnderline() { return underline; } @@ -137,7 +137,7 @@ public class CellAttributes { * * @return protect value */ - public final boolean getProtect() { + public final boolean isProtect() { return protect; }