PDTableAttributeObject.java (pdfbox-2.0.23-src) | : | PDTableAttributeObject.java (pdfbox-2.0.24-src) | ||
---|---|---|---|---|
skipping to change at line 197 | skipping to change at line 197 | |||
{ | { | |||
this.setString(SUMMARY, summary); | this.setString(SUMMARY, summary); | |||
} | } | |||
@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(ROW_SPAN)) | if (this.isSpecified(ROW_SPAN)) | |||
{ | { | |||
sb.append(", RowSpan=").append(String.valueOf(this.getRowSpan())); | sb.append(", RowSpan=").append(this.getRowSpan()); | |||
} | } | |||
if (this.isSpecified(COL_SPAN)) | if (this.isSpecified(COL_SPAN)) | |||
{ | { | |||
sb.append(", ColSpan=").append(String.valueOf(this.getColSpan())); | sb.append(", ColSpan=").append(this.getColSpan()); | |||
} | } | |||
if (this.isSpecified(HEADERS)) | if (this.isSpecified(HEADERS)) | |||
{ | { | |||
sb.append(", Headers=").append(arrayToString(this.getHeaders())); | sb.append(", Headers=").append(arrayToString(this.getHeaders())); | |||
} | } | |||
if (this.isSpecified(SCOPE)) | if (this.isSpecified(SCOPE)) | |||
{ | { | |||
sb.append(", Scope=").append(this.getScope()); | sb.append(", Scope=").append(this.getScope()); | |||
} | } | |||
if (this.isSpecified(SUMMARY)) | if (this.isSpecified(SUMMARY)) | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |