package com.lowagie.text; import com.lowagie.text.pdf.PdfName; import com.lowagie.text.pdf.PdfObject; import com.lowagie.text.pdf.interfaces.IAccessibleElement; import java.util.HashMap; import java.util.UUID; public class ListLabel extends ListBody { protected PdfName role = PdfName.LBL; protected float indentation = 0; protected boolean tagLabelContent = true; protected ListLabel(final ListItem parentItem) { super(parentItem); } public PdfName getRole() { return role; } public void setRole(final PdfName role) { this.role = role; } public float getIndentation() { return indentation; } public void setIndentation(float indentation) { this.indentation = indentation; } /** * Gets the value of tagLabelContent property. * If the property is true it means that content of the list item lable will be tagged. * For example: * * <LI> * <Lbl> * <Span>1.</Span> * </Lbl> * </LI> * * If the property set to false it will look as follows: * * <LI> * <Lbl>1.</Lbl> * </LI> * @return */ public boolean getTagLabelContent() { return tagLabelContent; } public void setTagLabelContent(boolean tagLabelContent) { this.tagLabelContent = tagLabelContent; } }