writer2latex.latex.util
Class BeforeAfter

java.lang.Object
  extended by writer2latex.latex.util.BeforeAfter

public class BeforeAfter
extends java.lang.Object

Utility class to hold LaTeX code to put before/after other LaTeX code


Constructor Summary
BeforeAfter()
           
 
Method Summary
 void add(java.lang.String sBefore1, java.lang.String sAfter1)
          Add data to the BeforeAfter
 java.lang.String getAfter()
          Get LaTeX code to put after
 java.lang.String getBefore()
          Get LaTeX code to put before
 boolean isEmpty()
          Check if this BeforeAfter contains any data
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BeforeAfter

public BeforeAfter()
Method Detail

add

public void add(java.lang.String sBefore1,
                java.lang.String sAfter1)

Add data to the BeforeAfter

The new data will be be added "inside", thus for example

will create the pair \textsf{\textit{, }}

Parameters:
sBefore1 - LaTeX code to put before
sBefore2 - LaTeX code to put after

getBefore

public java.lang.String getBefore()
Get LaTeX code to put before

Returns:
then LaTeX code

getAfter

public java.lang.String getAfter()
Get LaTeX code to put after

Returns:
then LaTeX code

isEmpty

public boolean isEmpty()
Check if this BeforeAfter contains any data

Returns:
true if there is data in at least one part