}
}
- byte follow = getIxchFollow( listLevel );
+ byte follow = listLevel.getTypeOfCharFollowingTheNumber();
switch ( follow )
{
case 0:
}
}
- 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 )
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;
_jc.setValue(_info, alignment);
}
+ public void setTypeOfCharFollowingTheNumber( byte value )
+ {
+ this._ixchFollow = value;
+ }
+
public void setNumberProperties(byte[] grpprl)
{
_grpprlChpx = grpprl;