W2l paragraph style map enhancement (break-after)

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@103 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2011-04-20 07:45:41 +00:00
parent f19433e716
commit 9fc63c43cb
6 changed files with 76 additions and 40 deletions

View file

@ -16,21 +16,26 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2007 by Henrik Just
* Copyright: 2002-2011 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.0 (2007-07-30)
* Version 1.2 (2011-03-30)
*
*/
package writer2latex.latex.util;
// A struct to hold data about a style map
class StyleMapItem {
public class StyleMapItem {
public static final int NONE = 0;
public static final int LINE = 1;
public static final int PAR = 2;
String sBefore;
String sAfter;
String sNext;
int nBreakAfter;
boolean bLineBreak;
boolean bVerbatim;
}