From 9647ab8976151de24e549936c5fd80140d8d5ba6 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Wed, 15 Sep 2010 17:38:50 +0000 Subject: [PATCH] Add some more paragraph property documentation and tests git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@997413 13f79535-47bb-0310-9956-ffa450edef68 --- .../hwpf/sprm/ParagraphSprmUncompressor.java | 4 ++++ .../hwpf/usermodel/TestRangeProperties.java | 22 +++++++++++++++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java b/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java index c53daff04..a6b12ec2d 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java @@ -115,6 +115,7 @@ public final class ParagraphSprmUncompressor } break; case 0x3: + // Physical justification of the paragraph newPAP.setJc ((byte) sprm.getOperand()); break; case 0x4: @@ -384,6 +385,9 @@ public final class ParagraphSprmUncompressor case 0x4c: newPAP.setFTtpEmbedded((byte)sprm.getOperand()); break; + case 0x61: + // Logicial justification of the paragraph, eg left, centre, right + break; default: break; } diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestRangeProperties.java b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestRangeProperties.java index df17b74ce..34dfaf71f 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestRangeProperties.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestRangeProperties.java @@ -29,8 +29,6 @@ import junit.framework.TestCase; * Tests to ensure that our ranges end up with * the right text in them, and the right font/styling * properties applied to them. - * - * TODO - re-enable me when unicode paragraph stuff is fixed! */ public final class TestRangeProperties extends TestCase { private static final char page_break = (char)12; @@ -146,6 +144,16 @@ public final class TestRangeProperties extends TestCase { assertEquals("Arial Black", c7.getFontName()); assertEquals(22, c1.getFontSize()); assertEquals(32, c7.getFontSize()); + + // This document has 15 styles + assertEquals(15, a.getStyleSheet().numStyles()); + + // Ensure none of the paragraphs refer to one that isn't there, + // and none of their character runs either + for(int i=0; i