Java Doc for RtfField.java in  » PDF » pdf-itext » com » lowagie » text » rtf » field » 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.field 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.lowagie.text.Chunk
      com.lowagie.text.rtf.field.RtfField

All known Subclasses:   com.lowagie.text.rtf.field.RtfPageNumber,  com.lowagie.text.rtf.field.RtfTotalPageNumber,  com.lowagie.text.rtf.field.RtfTOCEntry,  com.lowagie.text.rtf.field.RtfAnchor,  com.lowagie.text.rtf.field.RtfTableOfContents,
RtfField
abstract public class RtfField extends Chunk implements RtfBasicElement(Code)
The RtfField class is an abstract base class for all rtf field functionality. Subclasses only need to implement the two abstract methods writeFieldInstContent and writeFieldResultContent. All other field functionality is handled by the RtfField class.
version:
   $Id: RtfField.java 2776 2007-05-23 20:01:40Z hallm $
author:
   Mark Hall (mhall@edu.uni-klu.ac.at)
author:
   Dirk Weigenand (Dirk.Weigenand@smb-tec.com)
author:
   Thomas Bickel (tmb99@inode.at)


Field Summary
protected  RtfDocumentdocument
    

Constructor Summary
protected  RtfField(RtfDocument doc)
     Constructs a RtfField for a RtfDocument.
protected  RtfField(RtfDocument doc, Font font)
     Constructs a RtfField for a RtfDocument.

Method Summary
public  booleanisEmpty()
     An RtfField is never empty.
public  booleanisFieldAlt()
    
public  booleanisFieldDirty()
    
public  booleanisFieldEdit()
    
public  booleanisFieldLocked()
    
public  booleanisFieldPrivate()
    
public  voidsetFieldAlt(boolean fieldAlt)
    
public  voidsetFieldDirty(boolean fieldDirty)
    
public  voidsetFieldEdit(boolean fieldEdit)
     Set whether this field is edited.
public  voidsetFieldLocked(boolean fieldLocked)
    
public  voidsetFieldPrivate(boolean fieldPrivate)
    
public  voidsetFont(Font font)
     Override setFont to perform the correct font handling.
public  voidsetInHeader(boolean inHeader)
    
public  voidsetInTable(boolean inTable)
    
public  voidsetRtfDocument(RtfDocument doc)
    
public  byte[]write()
     Write the content of this RtfField.
public  voidwriteContent(OutputStream result)
     Writes the element content to the given output stream.
abstract protected  byte[]writeFieldInstContent()
     Writes the content of the field instruction area.
protected  voidwriteFieldInstContent(OutputStream out)
     Writes the content of the field instruction area.
abstract protected  byte[]writeFieldResultContent()
     Writes the content of the pre-calculated field result.
protected  voidwriteFieldResultContent(OutputStream out)
     Writes the content of the pre-calculated field result.

Field Detail
document
protected RtfDocument document(Code)
The RtfDocument this RtfField belongs to




Constructor Detail
RtfField
protected RtfField(RtfDocument doc)(Code)
Constructs a RtfField for a RtfDocument. This is not very useful, since the RtfField by itself does not do anything. Use one of the subclasses instead.
Parameters:
  doc - The RtfDocument this RtfField belongs to.



RtfField
protected RtfField(RtfDocument doc, Font font)(Code)
Constructs a RtfField for a RtfDocument. This is not very useful, since the RtfField by itself does not do anything. Use one of the subclasses instead.
Parameters:
  doc - The RtfDocument this RtfField belongs to.
Parameters:
  font - The Font this RtfField should use




Method Detail
isEmpty
public boolean isEmpty()(Code)
An RtfField is never empty.



isFieldAlt
public boolean isFieldAlt()(Code)
Get whether this field is an alt field Returns whether this field is an alt field



isFieldDirty
public boolean isFieldDirty()(Code)
Get whether this field is dirty Returns whether this field is dirty



isFieldEdit
public boolean isFieldEdit()(Code)
Get whether this field is edited Returns whether this field is edited



isFieldLocked
public boolean isFieldLocked()(Code)
Get whether this field is locked Returns the fieldLocked.



isFieldPrivate
public boolean isFieldPrivate()(Code)
Get whether this field is private Returns the fieldPrivate.



setFieldAlt
public void setFieldAlt(boolean fieldAlt)(Code)
Set whether this field is an alt field
Parameters:
  fieldAlt - The value to use



setFieldDirty
public void setFieldDirty(boolean fieldDirty)(Code)
Set whether this field is dirty
Parameters:
  fieldDirty - The value to use



setFieldEdit
public void setFieldEdit(boolean fieldEdit)(Code)
Set whether this field is edited.
Parameters:
  fieldEdit - The value to use



setFieldLocked
public void setFieldLocked(boolean fieldLocked)(Code)
Set whether this field is locked
Parameters:
  fieldLocked - The value to use



setFieldPrivate
public void setFieldPrivate(boolean fieldPrivate)(Code)
Set whether this field is private
Parameters:
  fieldPrivate - The value to use



setFont
public void setFont(Font font)(Code)
Override setFont to perform the correct font handling.



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



setInTable
public void setInTable(boolean inTable)(Code)
Sets whether this RtfField is in a table
Parameters:
  inTable - True if this RtfField is in a table, false otherwise



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



write
public byte[] write()(Code)
Write the content of this RtfField. A byte array containing the content of this RtfFieldRtfField.writeContent(OutputStream)



writeContent
public void writeContent(OutputStream result) throws IOException(Code)
Writes the element content to the given output stream.



writeFieldInstContent
abstract protected byte[] writeFieldInstContent() throws IOException(Code)
Writes the content of the field instruction area. Override this method in your subclasses. The content of the field instruction areaRtfField.writeFieldInstContent(OutputStream)
throws:
  IOException - If an error occurs.



writeFieldInstContent
protected void writeFieldInstContent(OutputStream out) throws IOException(Code)
Writes the content of the field instruction area. Override this method in your subclasses.



writeFieldResultContent
abstract protected byte[] writeFieldResultContent() throws IOException(Code)
Writes the content of the pre-calculated field result. Override this method in your subclasses. A byte array containing the field resultRtfField.writeFieldResultContent(OutputStream)
throws:
  IOException - If an error occurs



writeFieldResultContent
protected void writeFieldResultContent(OutputStream out) throws IOException(Code)
Writes the content of the pre-calculated field result. Override this method in your subclasses.



Fields inherited from com.lowagie.text.Chunk
final public static String ACTION(Code)(Java Doc)
final public static String BACKGROUND(Code)(Java Doc)
final public static String COLOR(Code)(Java Doc)
final public static String ENCODING(Code)(Java Doc)
final public static String GENERICTAG(Code)(Java Doc)
final public static String HSCALE(Code)(Java Doc)
final public static String HYPHENATION(Code)(Java Doc)
final public static String IMAGE(Code)(Java Doc)
final public static String LOCALDESTINATION(Code)(Java Doc)
final public static String LOCALGOTO(Code)(Java Doc)
final public static Chunk NEWLINE(Code)(Java Doc)
final public static String NEWPAGE(Code)(Java Doc)
final public static Chunk NEXTPAGE(Code)(Java Doc)
final public static String OBJECT_REPLACEMENT_CHARACTER(Code)(Java Doc)
final public static String PDFANNOTATION(Code)(Java Doc)
final public static String REMOTEGOTO(Code)(Java Doc)
final public static String SKEW(Code)(Java Doc)
final public static String SPLITCHARACTER(Code)(Java Doc)
final public static String SUBSUPSCRIPT(Code)(Java Doc)
final public static String TEXTRENDERMODE(Code)(Java Doc)
final public static String UNDERLINE(Code)(Java Doc)
protected HashMap attributes(Code)(Java Doc)
protected StringBuffer content(Code)(Java Doc)
protected Font font(Code)(Java Doc)

Methods inherited from com.lowagie.text.Chunk
public static Object[][] addToArray(Object original, Object item)(Code)(Java Doc)
public StringBuffer append(String string)(Code)(Java Doc)
public String content()(Code)(Java Doc)
public Font font()(Code)(Java Doc)
public HashMap getAttributes()(Code)(Java Doc)
public ArrayList getChunks()(Code)(Java Doc)
public String getContent()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public float getHorizontalScaling()(Code)(Java Doc)
public Image getImage()(Code)(Java Doc)
public static Set getKeySet(Hashtable table)(Code)(Java Doc)
public float getTextRise()(Code)(Java Doc)
public float getWidthPoint()(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
public boolean process(ElementListener listener)(Code)(Java Doc)
public Chunk setAction(PdfAction action)(Code)(Java Doc)
public Chunk setAnchor(URL url)(Code)(Java Doc)
public Chunk setAnchor(String url)(Code)(Java Doc)
public Chunk setAnnotation(PdfAnnotation annotation)(Code)(Java Doc)
public void setAttributes(HashMap attributes)(Code)(Java Doc)
public Chunk setBackground(Color color)(Code)(Java Doc)
public Chunk setBackground(Color color, float extraLeft, float extraBottom, float extraRight, float extraTop)(Code)(Java Doc)
public void setFont(Font font)(Code)(Java Doc)
public Chunk setGenericTag(String text)(Code)(Java Doc)
public Chunk setHorizontalScaling(float scale)(Code)(Java Doc)
public Chunk setHyphenation(HyphenationEvent hyphenation)(Code)(Java Doc)
public Chunk setLocalDestination(String name)(Code)(Java Doc)
public Chunk setLocalGoto(String name)(Code)(Java Doc)
public Chunk setNewPage()(Code)(Java Doc)
public Chunk setRemoteGoto(String filename, String name)(Code)(Java Doc)
public Chunk setRemoteGoto(String filename, int page)(Code)(Java Doc)
public Chunk setSkew(float alpha, float beta)(Code)(Java Doc)
public Chunk setSplitCharacter(SplitCharacter splitCharacter)(Code)(Java Doc)
public Chunk setTextRenderMode(int mode, float strokeWidth, Color strokeColor)(Code)(Java Doc)
public Chunk setTextRise(float rise)(Code)(Java Doc)
public Chunk setUnderline(float thickness, float yPosition)(Code)(Java Doc)
public Chunk setUnderline(Color color, float thickness, float thicknessMul, float yPosition, float yPositionMul, int cap)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public int type()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.