private void showContentAttributes(
ContentObject content,
DefaultTableModel model
)
{
Operation operation;
if(content instanceof Operation)
{operation = (Operation)content;}
else if(content instanceof CompositeObject)
{operation = ((CompositeObject)content).getHeader();}
else
{operation = null;}
if(operation == null)
return;
model.addRow(
new Object[]
{
"(operator)",
operation.getOperator()
}
);
List<PdfDirectObject> operands = operation.getOperands();
if(operands != null)
{
for(int index = 0, length = operands.size(); index < length; index++)
{
PdfDirectObject operand = operands.get(index);