Package com.scroogexhtml.converter
Class ParagraphProperties
- java.lang.Object
-
- com.scroogexhtml.converter.ParagraphProperties
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ParagraphProperties.Border
This enum defines available paragraph border attributes.
-
Constructor Summary
Constructors Constructor Description ParagraphProperties()
Default constructor.ParagraphProperties(ParagraphProperties another)
Copy constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Alignment
getAlign()
String
getBGColor()
ParagraphProperties.Border
getBorder()
String
getBorderColor()
BorderStyle
getBorderStyle()
int
getBorderWidth()
int
getFirstIndent()
int
getLeftIndent()
NumberingLevel
getNumberingLevel()
int
getRightIndent()
int
getSpaceAfter()
int
getSpaceBefore()
boolean
isInTable()
boolean
isRightToLeftPar()
void
setAlign(Alignment newValue)
void
setBGColor(String bGColor)
void
setBorder(ParagraphProperties.Border newValue)
void
setBorderColor(String newValue)
void
setBorderStyle(BorderStyle borderStyle)
void
setBorderWidth(int newValue)
void
setFirstIndent(int newValue)
void
setInTable(boolean newValue)
void
setLeftIndent(int newValue)
void
setNumberingLevel(NumberingLevel newValue)
void
setRightIndent(int newValue)
void
setRightToLeftPar(boolean newValue)
void
setSpaceAfter(int newValue)
void
setSpaceBefore(int newValue)
-
-
-
Constructor Detail
-
ParagraphProperties
public ParagraphProperties(ParagraphProperties another)
Copy constructor.- Parameters:
another
- the instance to be copied
-
ParagraphProperties
public ParagraphProperties()
Default constructor.
-
-
Method Detail
-
isInTable
public boolean isInTable()
-
setInTable
public void setInTable(boolean newValue)
-
getAlign
public Alignment getAlign()
-
setAlign
public void setAlign(Alignment newValue)
-
getNumberingLevel
public NumberingLevel getNumberingLevel()
-
setNumberingLevel
public void setNumberingLevel(NumberingLevel newValue)
-
getLeftIndent
public int getLeftIndent()
-
setLeftIndent
public void setLeftIndent(int newValue)
-
getRightIndent
public int getRightIndent()
-
setRightIndent
public void setRightIndent(int newValue)
-
getFirstIndent
public int getFirstIndent()
-
setFirstIndent
public void setFirstIndent(int newValue)
-
isRightToLeftPar
public boolean isRightToLeftPar()
-
setRightToLeftPar
public void setRightToLeftPar(boolean newValue)
-
getSpaceBefore
public int getSpaceBefore()
-
setSpaceBefore
public void setSpaceBefore(int newValue)
-
getSpaceAfter
public int getSpaceAfter()
-
setSpaceAfter
public void setSpaceAfter(int newValue)
-
getBorder
public ParagraphProperties.Border getBorder()
-
setBorder
public void setBorder(ParagraphProperties.Border newValue)
-
getBorderStyle
public BorderStyle getBorderStyle()
-
setBorderStyle
public void setBorderStyle(BorderStyle borderStyle)
-
getBGColor
public String getBGColor()
-
setBGColor
public void setBGColor(String bGColor)
-
getBorderColor
public String getBorderColor()
-
setBorderColor
public void setBorderColor(String newValue)
-
getBorderWidth
public int getBorderWidth()
-
setBorderWidth
public void setBorderWidth(int newValue)
-
-