Java Doc for RtfCell.java in  » PDF » pdf-itext » com » lowagie » text » rtf » table » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » PDF » pdf itext » com.lowagie.text.rtf.table 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.lowagie.text.Cell
   com.lowagie.text.rtf.table.RtfCell

RtfCell
public class RtfCell extends Cell implements RtfExtendedElement(Code)
The RtfCell wraps a Cell, but can also be added directly to a Table. The RtfCell is an extension of Cell, that supports a multitude of different borderstyles.
version:
   $Id: RtfCell.java 2796 2007-05-27 09:42:20Z psoares33 $
author:
   Mark Hall (mhall@edu.uni-klu.ac.at)
author:
   Steffen Stundzig
author:
   Benoit Wiart
author:
   Thomas Bickel (tmb99@inode.at)
See Also:   com.lowagie.text.rtf.table.RtfBorder



Constructor Summary
public  RtfCell()
    
public  RtfCell(String content)
    
public  RtfCell(Element element)
    
public  RtfCell(Properties properties)
    
protected  RtfCell(boolean deleted)
     Constructs a deleted RtfCell.
protected  RtfCell(RtfDocument doc, RtfRow row, Cell cell)
     Constructs a RtfCell based on a Cell.

Method Summary
protected  RtfBorderGroupgetBorders()
    
protected  intgetCellRight()
    
protected  intgetCellWidth()
    
protected  intgetCellpadding()
    
protected  RtfColorgetRtfBackgroundColor()
    
public  booleanisDeleted()
     Checks whether this RtfCell is a placeholder for a table cell that has been removed due to col/row spanning.
public  voidsetBorders(RtfBorderGroup borderGroup)
    
protected  voidsetCellMergeChild(RtfCell mergeParent)
     Merge this cell into the parent cell.
protected  voidsetCellRight(int cellRight)
     Sets the right margin of this cell.
protected  voidsetCellWidth(int cellWidth)
     Sets the cell width of this RtfCell.
public  voidsetInHeader(boolean inHeader)
    
public  voidsetInTable(boolean inTable)
    
public  voidsetRtfDocument(RtfDocument doc)
    
public  byte[]write()
    
public  voidwriteContent(OutputStream result)
    
public  byte[]writeDefinition()
    
public  voidwriteDefinition(OutputStream result)
    


Constructor Detail
RtfCell
public RtfCell()(Code)
Constructs an empty RtfCell



RtfCell
public RtfCell(String content)(Code)
Constructs a RtfCell based upon a String
Parameters:
  content - The String to base the RtfCell on



RtfCell
public RtfCell(Element element) throws BadElementException(Code)
Constructs a RtfCell based upon an Element
Parameters:
  element - The Element to base the RtfCell on
throws:
  BadElementException - If the Element is not valid



RtfCell
public RtfCell(Properties properties)(Code)
Constructs a RtfCell based upon certain Properties
Parameters:
  properties - The Properties for this RtfCell



RtfCell
protected RtfCell(boolean deleted)(Code)
Constructs a deleted RtfCell.
Parameters:
  deleted - Whether this RtfCell is actually deleted.



RtfCell
protected RtfCell(RtfDocument doc, RtfRow row, Cell cell)(Code)
Constructs a RtfCell based on a Cell.
Parameters:
  doc - The RtfDocument this RtfCell belongs to
Parameters:
  row - The RtfRow this RtfCell lies in
Parameters:
  cell - The Cell to base this RtfCell on




Method Detail
getBorders
protected RtfBorderGroup getBorders()(Code)
Gets the borders of this RtfCell The borders of this RtfCell



getCellRight
protected int getCellRight()(Code)
Gets the right margin of this RtfCell The right margin of this RtfCell.



getCellWidth
protected int getCellWidth()(Code)
Gets the cell width of this RtfCell The cell width of this RtfCell



getCellpadding
protected int getCellpadding()(Code)
Gets the cell padding of this RtfCell The cell padding of this RtfCell



getRtfBackgroundColor
protected RtfColor getRtfBackgroundColor()(Code)
Get the background color of this RtfCell The background color of this RtfCell



isDeleted
public boolean isDeleted()(Code)
Checks whether this RtfCell is a placeholder for a table cell that has been removed due to col/row spanning. True if this RtfCell is deleted, false otherwise.



setBorders
public void setBorders(RtfBorderGroup borderGroup)(Code)
Set the borders of this RtfCell
Parameters:
  borderGroup - The RtfBorderGroup to use as borders



setCellMergeChild
protected void setCellMergeChild(RtfCell mergeParent)(Code)
Merge this cell into the parent cell.
Parameters:
  mergeParent - The RtfCell to merge with



setCellRight
protected void setCellRight(int cellRight)(Code)
Sets the right margin of this cell. Used in merge operations
Parameters:
  cellRight - The right margin to use



setCellWidth
protected void setCellWidth(int cellWidth)(Code)
Sets the cell width of this RtfCell. Used in merge operations.
Parameters:
  cellWidth - The cell width to use



setInHeader
public void setInHeader(boolean inHeader)(Code)
Sets whether this RtfCell is in a header
Parameters:
  inHeader - True if this RtfCell is in a header, false otherwise



setInTable
public void setInTable(boolean inTable)(Code)
Unused
Parameters:
  inTable -



setRtfDocument
public void setRtfDocument(RtfDocument doc)(Code)
Sets the RtfDocument this RtfCell belongs to
Parameters:
  doc - The RtfDocument to use



write
public byte[] write()(Code)
Write the content of this RtfCell A byte array with the content of this RtfCellRtfCell.writeContent(OutputStream)



writeContent
public void writeContent(OutputStream result) throws IOException(Code)
Write the content of this RtfCell



writeDefinition
public byte[] writeDefinition()(Code)
Write the cell definition part of this RtfCell A byte array with the cell definitionRtfCell.writeDefinition(OutputStream)



writeDefinition
public void writeDefinition(OutputStream result) throws IOException(Code)
Write the cell definition part of this RtfCell



Fields inherited from com.lowagie.text.Cell
protected ArrayList arrayList(Code)(Java Doc)
protected int colspan(Code)(Java Doc)
protected boolean groupChange(Code)(Java Doc)
protected boolean header(Code)(Java Doc)
protected int horizontalAlignment(Code)(Java Doc)
protected int maxLines(Code)(Java Doc)
protected boolean percentage(Code)(Java Doc)
protected int rowspan(Code)(Java Doc)
protected boolean useAscender(Code)(Java Doc)
protected boolean useBorderPadding(Code)(Java Doc)
protected boolean useDescender(Code)(Java Doc)
protected int verticalAlignment(Code)(Java Doc)
protected float width(Code)(Java Doc)

Methods inherited from com.lowagie.text.Cell
public boolean add(Object o)(Code)(Java Doc)
public void addElement(Element element) throws BadElementException(Code)(Java Doc)
public float bottom()(Code)(Java Doc)
public float bottom(int margin)(Code)(Java Doc)
public String cellWidth()(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public int colspan()(Code)(Java Doc)
public PdfPCell createPdfPCell() throws BadElementException(Code)(Java Doc)
public float getBottom()(Code)(Java Doc)
public ArrayList getChunks()(Code)(Java Doc)
public int getColspan()(Code)(Java Doc)
public Iterator getElements()(Code)(Java Doc)
public boolean getGroupChange()(Code)(Java Doc)
public int getHorizontalAlignment()(Code)(Java Doc)
public float getLeading()(Code)(Java Doc)
public float getLeft()(Code)(Java Doc)
public int getMaxLines()(Code)(Java Doc)
public float getRight()(Code)(Java Doc)
public int getRowspan()(Code)(Java Doc)
public String getShowTruncation()(Code)(Java Doc)
public float getTop()(Code)(Java Doc)
public int getVerticalAlignment()(Code)(Java Doc)
public float getWidth()(Code)(Java Doc)
public String getWidthAsString()(Code)(Java Doc)
public boolean header()(Code)(Java Doc)
public int horizontalAlignment()(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
public boolean isHeader()(Code)(Java Doc)
public boolean isTable()(Code)(Java Doc)
public boolean isUseAscender()(Code)(Java Doc)
public boolean isUseBorderPadding()(Code)(Java Doc)
public boolean isUseDescender()(Code)(Java Doc)
public float leading()(Code)(Java Doc)
public float left()(Code)(Java Doc)
public float left(int margin)(Code)(Java Doc)
public boolean noWrap()(Code)(Java Doc)
public boolean process(ElementListener listener)(Code)(Java Doc)
public float right()(Code)(Java Doc)
public float right(int margin)(Code)(Java Doc)
public int rowspan()(Code)(Java Doc)
public void setBottom(int value)(Code)(Java Doc)
public void setColspan(int value)(Code)(Java Doc)
public void setGroupChange(boolean value)(Code)(Java Doc)
public void setHeader(boolean value)(Code)(Java Doc)
public void setHorizontalAlignment(int value)(Code)(Java Doc)
public void setHorizontalAlignment(String alignment)(Code)(Java Doc)
public void setLeading(float value)(Code)(Java Doc)
public void setLeft(int value)(Code)(Java Doc)
public void setMaxLines(int value)(Code)(Java Doc)
public void setNoWrap(boolean value)(Code)(Java Doc)
public void setRight(int value)(Code)(Java Doc)
public void setRowspan(int value)(Code)(Java Doc)
public void setShowTruncation(String value)(Code)(Java Doc)
public void setTop(int value)(Code)(Java Doc)
public void setUseAscender(boolean use)(Code)(Java Doc)
public void setUseBorderPadding(boolean use)(Code)(Java Doc)
public void setUseDescender(boolean use)(Code)(Java Doc)
public void setVerticalAlignment(int value)(Code)(Java Doc)
public void setVerticalAlignment(String alignment)(Code)(Java Doc)
public void setWidth(float value)(Code)(Java Doc)
public void setWidth(String value)(Code)(Java Doc)
public int size()(Code)(Java Doc)
public float top()(Code)(Java Doc)
public float top(int margin)(Code)(Java Doc)
public int type()(Code)(Java Doc)
public int verticalAlignment()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.