PDExportFormatAttributeObject.java (pdfbox-2.0.23-src) | : | PDExportFormatAttributeObject.java (pdfbox-2.0.24-src) | ||
---|---|---|---|---|
skipping to change at line 242 | skipping to change at line 242 | |||
@Override | @Override | |||
public String toString() | public String toString() | |||
{ | { | |||
StringBuilder sb = new StringBuilder().append(super.toString()); | StringBuilder sb = new StringBuilder().append(super.toString()); | |||
if (this.isSpecified(PDListAttributeObject.LIST_NUMBERING)) | if (this.isSpecified(PDListAttributeObject.LIST_NUMBERING)) | |||
{ | { | |||
sb.append(", ListNumbering=").append(this.getListNumbering()); | sb.append(", ListNumbering=").append(this.getListNumbering()); | |||
} | } | |||
if (this.isSpecified(PDTableAttributeObject.ROW_SPAN)) | if (this.isSpecified(PDTableAttributeObject.ROW_SPAN)) | |||
{ | { | |||
sb.append(", RowSpan=").append(String.valueOf(this.getRowSpan())); | sb.append(", RowSpan=").append(this.getRowSpan()); | |||
} | } | |||
if (this.isSpecified(PDTableAttributeObject.COL_SPAN)) | if (this.isSpecified(PDTableAttributeObject.COL_SPAN)) | |||
{ | { | |||
sb.append(", ColSpan=").append(String.valueOf(this.getColSpan())); | sb.append(", ColSpan=").append(this.getColSpan()); | |||
} | } | |||
if (this.isSpecified(PDTableAttributeObject.HEADERS)) | if (this.isSpecified(PDTableAttributeObject.HEADERS)) | |||
{ | { | |||
sb.append(", Headers=").append(arrayToString(this.getHeaders())); | sb.append(", Headers=").append(arrayToString(this.getHeaders())); | |||
} | } | |||
if (this.isSpecified(PDTableAttributeObject.SCOPE)) | if (this.isSpecified(PDTableAttributeObject.SCOPE)) | |||
{ | { | |||
sb.append(", Scope=").append(this.getScope()); | sb.append(", Scope=").append(this.getScope()); | |||
} | } | |||
if (this.isSpecified(PDTableAttributeObject.SUMMARY)) | if (this.isSpecified(PDTableAttributeObject.SUMMARY)) | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |