Browse Source

add get/set for _ixchFollow in listLevel

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1147377 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_8_BETA4
Sergey Vladimirov 13 years ago
parent
commit
73cf1f85f1

+ 1
- 15
src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordUtils.java View File

@@ -146,7 +146,7 @@ public class AbstractWordUtils
}
}

byte follow = getIxchFollow( listLevel );
byte follow = listLevel.getTypeOfCharFollowingTheNumber();
switch ( follow )
{
case 0:
@@ -203,20 +203,6 @@ public class AbstractWordUtils
}
}

public static byte getIxchFollow( ListLevel listLevel )
{
try
{
Field field = ListLevel.class.getDeclaredField( "_ixchFollow" );
field.setAccessible( true );
return ( (Byte) field.get( listLevel ) ).byteValue();
}
catch ( Exception exc )
{
throw new Error( exc );
}
}

public static String getJustification( int js )
{
switch ( js )

+ 13
- 0
src/scratchpad/src/org/apache/poi/hwpf/model/ListLevel.java View File

@@ -147,6 +147,14 @@ public final class ListLevel
return null;
}

/**
* "The type of character following the number text for the paragraph: 0 == tab, 1 == space, 2 == nothing."
*/
public byte getTypeOfCharFollowingTheNumber()
{
return this._ixchFollow;
}

public void setStartAt(int startAt)
{
_iStartAt = startAt;
@@ -162,6 +170,11 @@ public final class ListLevel
_jc.setValue(_info, alignment);
}

public void setTypeOfCharFollowingTheNumber( byte value )
{
this._ixchFollow = value;
}

public void setNumberProperties(byte[] grpprl)
{
_grpprlChpx = grpprl;

Loading…
Cancel
Save