From dbc3df6d2d21bb5afc00224c7d6dc072196dd976 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Sat, 19 Feb 2005 10:40:07 +0000 Subject: [PATCH] Restored JDK 1.5 compatibility. Bug: http://issues.apache.org/bugzilla/show_bug.cgi?id=33645 Submitted by: Oskar Berggren git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198445 13f79535-47bb-0310-9956-ffa450edef68 --- .../fo/properties/CommonTextDecoration.java | 20 +++++++++---------- .../fo/properties/TextDecorationProperty.java | 6 +++--- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/java/org/apache/fop/fo/properties/CommonTextDecoration.java b/src/java/org/apache/fop/fo/properties/CommonTextDecoration.java index 8385013c6..a48fd170f 100644 --- a/src/java/org/apache/fop/fo/properties/CommonTextDecoration.java +++ b/src/java/org/apache/fop/fo/properties/CommonTextDecoration.java @@ -72,51 +72,51 @@ public class CommonTextDecoration { Iterator i = list.iterator(); while (i.hasNext()) { Property prop = (Property)i.next(); - int enum = prop.getEnum(); - if (enum == Constants.EN_NONE) { + int prop_enum = prop.getEnum(); + if (prop_enum == Constants.EN_NONE) { if (deco != null) { deco.decoration = 0; } return deco; - } else if (enum == Constants.EN_UNDERLINE) { + } else if (prop_enum == Constants.EN_UNDERLINE) { if (deco == null) { deco = new CommonTextDecoration(); } deco.decoration |= UNDERLINE; deco.underColor = pList.get(Constants.PR_COLOR).getColorType(); - } else if (enum == Constants.EN_NO_UNDERLINE) { + } else if (prop_enum == Constants.EN_NO_UNDERLINE) { if (deco != null) { deco.decoration &= OVERLINE | LINE_THROUGH | BLINK; deco.underColor = pList.get(Constants.PR_COLOR).getColorType(); } - } else if (enum == Constants.EN_OVERLINE) { + } else if (prop_enum == Constants.EN_OVERLINE) { if (deco == null) { deco = new CommonTextDecoration(); } deco.decoration |= OVERLINE; deco.overColor = pList.get(Constants.PR_COLOR).getColorType(); - } else if (enum == Constants.EN_NO_OVERLINE) { + } else if (prop_enum == Constants.EN_NO_OVERLINE) { if (deco != null) { deco.decoration &= UNDERLINE | LINE_THROUGH | BLINK; deco.overColor = pList.get(Constants.PR_COLOR).getColorType(); } - } else if (enum == Constants.EN_LINE_THROUGH) { + } else if (prop_enum == Constants.EN_LINE_THROUGH) { if (deco == null) { deco = new CommonTextDecoration(); } deco.decoration |= LINE_THROUGH; deco.throughColor = pList.get(Constants.PR_COLOR).getColorType(); - } else if (enum == Constants.EN_NO_LINE_THROUGH) { + } else if (prop_enum == Constants.EN_NO_LINE_THROUGH) { if (deco != null) { deco.decoration &= UNDERLINE | OVERLINE | BLINK; deco.throughColor = pList.get(Constants.PR_COLOR).getColorType(); } - } else if (enum == Constants.EN_BLINK) { + } else if (prop_enum == Constants.EN_BLINK) { if (deco == null) { deco = new CommonTextDecoration(); } deco.decoration |= BLINK; - } else if (enum == Constants.EN_NO_BLINK) { + } else if (prop_enum == Constants.EN_NO_BLINK) { if (deco != null) { deco.decoration &= UNDERLINE | OVERLINE | LINE_THROUGH; } diff --git a/src/java/org/apache/fop/fo/properties/TextDecorationProperty.java b/src/java/org/apache/fop/fo/properties/TextDecorationProperty.java index ef5c08500..70bd7a57e 100644 --- a/src/java/org/apache/fop/fo/properties/TextDecorationProperty.java +++ b/src/java/org/apache/fop/fo/properties/TextDecorationProperty.java @@ -71,11 +71,11 @@ public class TextDecorationProperty extends ListProperty { if (prop instanceof EnumProperty) { //skip } else if (prop instanceof NCnameProperty) { - Property enum = checkEnumValues(((NCnameProperty)prop).getString()); - if (enum == null) { + Property prop_enum = checkEnumValues(((NCnameProperty)prop).getString()); + if (prop_enum == null) { throw new PropertyException("Illegal enum value: " + prop.getString()); } - l.set(i, enum); + l.set(i, prop_enum); } else { throw new PropertyException("Invalid content for text-decoration " + "property: " + prop); -- 2.39.5