Uses of Class
com.arctorus.documents.Run

Packages that use Run
com.arctorus.documents   
com.arctorus.documents.table   
 

Uses of Run in com.arctorus.documents
 

Methods in com.arctorus.documents that return types with arguments of type Run
 java.util.List<Run> Paragraph.getRuns()
          Get list of all text runs in a paragraph.
 

Methods in com.arctorus.documents with parameters of type Run
 void Paragraph.addRun(Run run)
          Add text to a paragraph.
 

Uses of Run in com.arctorus.documents.table
 

Methods in com.arctorus.documents.table that return types with arguments of type Run
 java.util.List<Run> MergedCell.getRuns()
          Get list of text runs stored in the merged cell.
 java.util.List<Run> Cell.getRuns()
          Get list of text runs of the cell.
 

Methods in com.arctorus.documents.table with parameters of type Run
 void MergedCell.addRun(Run run)
          Add new text run to the cell.
 void Cell.addRun(Run run)
          Add new text run to the cell.
 

Method parameters in com.arctorus.documents.table with type arguments of type Run
 void MergedCell.setRuns(java.util.List<Run> runs)
          Set list of text runs to store in the merged cell.
 void Cell.setRuns(java.util.List<Run> runs)
          Set text in the cell.