Java Doc for JRCellContents.java in  » Report » jasperreports-2.0.1 » net » sf » jasperreports » crosstabs » 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 » Report » jasperreports 2.0.1 » net.sf.jasperreports.crosstabs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.sf.jasperreports.crosstabs.JRCellContents

All known Subclasses:   net.sf.jasperreports.engine.fill.JRFillCellContents,  net.sf.jasperreports.crosstabs.base.JRBaseCellContents,  net.sf.jasperreports.crosstabs.design.JRDesignCellContents,
JRCellContents
public interface JRCellContents extends JRElementGroup,JRStyleContainer(Code)
Crosstab cell contents interface.

This interface is used for both crosstab row/column headers and data cells.

There are some restrictions/rules regarding crosstab cells:

  • subreports, crosstabs and charts are not allowed
  • delayed evaluation for text fields and images is not allowed
  • cells cannot split on multiple pages

author:
   Lucian Chirita (lucianc@users.sourceforge.net)
version:
   $Id: JRCellContents.java 1229 2006-04-19 10:27:35Z teodord $


Field Summary
final public static  intNOT_CALCULATED
     Width or height value indicating that the value has not been computed.
final public static  bytePOSITION_X_CENTER
     Horizontal stretch position indicating that the contents will be rendered on the center.
final public static  bytePOSITION_X_LEFT
     Horizontal stretch position indicating that the contents will be rendered on the left side.
final public static  bytePOSITION_X_RIGHT
     Horizontal stretch position indicating that the contents will be rendered on the right side.
final public static  bytePOSITION_X_STRETCH
     Horizontal stretch position indicating that the contents will be horizontally stretched.
final public static  bytePOSITION_Y_BOTTOM
     Vertical stretch position indicating that the contents will be rendered on the bottom.
final public static  bytePOSITION_Y_MIDDLE
     Vertical stretch position indicating that the contents will be rendered on the middle.
final public static  bytePOSITION_Y_STRETCH
     Vertical stretch position indicating that the contents will be rendered vertically stretched.
final public static  bytePOSITION_Y_TOP
     Vertical stretch position indicating that the contents will be rendered on the top.


Method Summary
public  ColorgetBackcolor()
     Returns the cell background color.
public  JRBoxgetBox()
     Returns the cell border.
public  intgetHeight()
     Returns the computed cell height.
public  BytegetMode()
     Returns the cell transparency mode.
public  intgetWidth()
     Returns the computed cell width.

Field Detail
NOT_CALCULATED
final public static int NOT_CALCULATED(Code)
Width or height value indicating that the value has not been computed.



POSITION_X_CENTER
final public static byte POSITION_X_CENTER(Code)
Horizontal stretch position indicating that the contents will be rendered on the center.



POSITION_X_LEFT
final public static byte POSITION_X_LEFT(Code)
Horizontal stretch position indicating that the contents will be rendered on the left side.



POSITION_X_RIGHT
final public static byte POSITION_X_RIGHT(Code)
Horizontal stretch position indicating that the contents will be rendered on the right side.



POSITION_X_STRETCH
final public static byte POSITION_X_STRETCH(Code)
Horizontal stretch position indicating that the contents will be horizontally stretched.



POSITION_Y_BOTTOM
final public static byte POSITION_Y_BOTTOM(Code)
Vertical stretch position indicating that the contents will be rendered on the bottom.



POSITION_Y_MIDDLE
final public static byte POSITION_Y_MIDDLE(Code)
Vertical stretch position indicating that the contents will be rendered on the middle.



POSITION_Y_STRETCH
final public static byte POSITION_Y_STRETCH(Code)
Vertical stretch position indicating that the contents will be rendered vertically stretched.



POSITION_Y_TOP
final public static byte POSITION_Y_TOP(Code)
Vertical stretch position indicating that the contents will be rendered on the top.





Method Detail
getBackcolor
public Color getBackcolor()(Code)
Returns the cell background color.

The cell is filled with the background color only if the cell has opaque mode. the cell backcolor




getBox
public JRBox getBox()(Code)
Returns the cell border. the cell border



getHeight
public int getHeight()(Code)
Returns the computed cell height. the computed cell height
See Also:   JRCellContents.NOT_CALCULATED



getMode
public Byte getMode()(Code)
Returns the cell transparency mode. net.sf.jasperreports.engine.JRElement.MODE_OPAQUE MODE_OPAQUEor net.sf.jasperreports.engine.JRElement.MODE_TRANSPARENT MODE_TRANSPARENT



getWidth
public int getWidth()(Code)
Returns the computed cell width. the computed cell width
See Also:   JRCellContents.NOT_CALCULATED



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