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


java.lang.Object
   com.lowagie.text.Rectangle
      com.lowagie.text.Cell

All known Subclasses:   com.lowagie.text.rtf.RtfTableCell,  com.lowagie.text.rtf.table.RtfCell,
Cell
public class Cell extends Rectangle implements TextElementArray(Code)
A Cell is a Rectangle containing other Elements.

A Cell must be added to a Table. The Table will place the Cell in a Row.

Example:

 Table table = new Table(3);
 table.setBorderWidth(1);
 table.setBorderColor(new Color(0, 0, 255));
 table.setCellpadding(5);
 table.setCellspacing(5);
 Cell cell = new Cell("header");
 cell.setHeader(true);
 cell.setColspan(3);
 table.addCell(cell);
 cell = new Cell("example cell with colspan 1 and rowspan 2");
 cell.setRowspan(2);
 cell.setBorderColor(new Color(255, 0, 0));
 table.addCell(cell);
 table.addCell("1.1");
 table.addCell("2.1");
 table.addCell("1.2");
 table.addCell("2.2");
 

See Also:   Rectangle
See Also:   Element
See Also:   Table
See Also:   Row


Field Summary
protected  ArrayListarrayList
     The ArrayList of Elements that are part of the content of the Cell.
protected  intcolspan
     The colspan of the cell.
protected  booleangroupChange
    
protected  booleanheader
    
protected  inthorizontalAlignment
     The horizontal alignment of the cell content.
 floatleading
     The leading of the content inside the cell.
protected  intmaxLines
     Maximum number of lines allowed in the cell.
protected  booleanpercentage
    
protected  introwspan
     The rowspan of the cell.
 StringshowTruncation
     If a truncation happens due to the Cell.maxLines property, then this text will be added to indicate a truncation has happened. Default value is null, and means avoiding marking the truncation.
protected  booleanuseAscender
     Indicates that the largest ascender height should be used to determine the height of the first line.
protected  booleanuseBorderPadding
     Adjusts the cell contents to compensate for border widths.
protected  booleanuseDescender
     Indicates that the largest descender height should be added to the height of the last line (so characters like y don't dip into the border).
protected  intverticalAlignment
     The vertical alignment of the cell content.
protected  floatwidth
     The width of the cell as a String.

Constructor Summary
public  Cell()
     Constructs an empty Cell.
public  Cell(boolean dummy)
     Constructs an empty Cell (for internal use only).
public  Cell(String content)
     Constructs a Cell with a certain content.

The String will be converted into a Paragraph.

public  Cell(Element element)
     Constructs a Cell with a certain Element.

if the element is a ListItem, Row or Cell, an exception will be thrown.

public  Cell(java.util.Properties attributes)
     Returns a Cell that has been constructed taking in account the value of some attributes.

Method Summary
public  booleanadd(Object o)
     Add an Object to this cell.
public  voidaddElement(Element element)
     Adds an element to this Cell.
public  floatbottom()
     This method throws an UnsupportedOperationException.
public  floatbottom(int margin)
     This method throws an UnsupportedOperationException.
public  StringcellWidth()
     Gets the width.
public  voidclear()
     Clears all the Elements of this Cell.
public  intcolspan()
     Gets the colspan.
public  PdfPCellcreatePdfPCell()
     Creates a PdfPCell based on this Cell object.
 voidfill()
     Makes sure there is at least 1 object in the Cell.
public  floatgetBottom()
     This method throws an UnsupportedOperationException.
public  ArrayListgetChunks()
     Gets all the chunks in this element.
public  intgetColspan()
     Gets the colspan.
public  IteratorgetElements()
     Gets an iterator of Elements.
public  booleangetGroupChange()
    
public  intgetHorizontalAlignment()
     Gets the horizontal alignment.
public  floatgetLeading()
     Gets the leading.
public  floatgetLeft()
     This method throws an UnsupportedOperationException.
public  intgetMaxLines()
    
public  floatgetRight()
     This method throws an UnsupportedOperationException.
public  intgetRowspan()
     Gets the rowspan.
public  StringgetShowTruncation()
    
public  floatgetTop()
     This method throws an UnsupportedOperationException.
public  intgetVerticalAlignment()
     Gets the vertical alignment.
public  floatgetWidth()
     Gets the width.
public  StringgetWidthAsString()
     Gets the width as a String.
public  booleanheader()
    
public  inthorizontalAlignment()
     Gets the horizontal alignment.
public  booleanisEmpty()
     Checks if the Cell is empty.
public  booleanisHeader()
    
public  booleanisTable()
     Checks if this Cell is a placeholder for a (nested) table.
public  booleanisUseAscender()
    
public  booleanisUseBorderPadding()
     Gets the value of Cell.useBorderPadding .
public  booleanisUseDescender()
    
public  floatleading()
     Gets the leading.
public  floatleft()
     This method throws an UnsupportedOperationException.
public  floatleft(int margin)
     This method throws an UnsupportedOperationException.
public  booleannoWrap()
     Get nowrap.
public  booleanprocess(ElementListener listener)
     Processes the element by adding it (or the different parts) to an ElementListener.
public  floatright()
     This method throws an UnsupportedOperationException.
public  floatright(int margin)
     This method throws an UnsupportedOperationException.
public  introwspan()
     Gets the rowspan.
public  voidsetBottom(int value)
     This method throws an UnsupportedOperationException.
public  voidsetColspan(int value)
     Sets the colspan.
public  voidsetGroupChange(boolean value)
     Sets group change.
public  voidsetHeader(boolean value)
     Sets header.
public  voidsetHorizontalAlignment(int value)
     Sets the horizontal alignment.
public  voidsetHorizontalAlignment(String alignment)
     Sets the alignment of this cell.
public  voidsetLeading(float value)
     Sets the leading.
public  voidsetLeft(int value)
     This method throws an UnsupportedOperationException.
public  voidsetMaxLines(int value)
    
public  voidsetNoWrap(boolean value)
     Set nowrap.
public  voidsetRight(int value)
     This method throws an UnsupportedOperationException.
public  voidsetRowspan(int value)
     Sets the rowspan.
public  voidsetShowTruncation(String value)
    
public  voidsetTop(int value)
     This method throws an UnsupportedOperationException.
public  voidsetUseAscender(boolean use)
     Sets the value of Cell.useAscender .
public  voidsetUseBorderPadding(boolean use)
     Sets the value of Cell.useBorderPadding .
public  voidsetUseDescender(boolean use)
     Sets the value of Cell.useDescender .
public  voidsetVerticalAlignment(int value)
     Sets the vertical alignment.
public  voidsetVerticalAlignment(String alignment)
     Sets the alignment of this paragraph.
public  voidsetWidth(float value)
     Sets the width.
public  voidsetWidth(String value)
     Sets the width.
public  intsize()
     Gets the number of Elements in the Cell.
public  floattop()
     This method throws an UnsupportedOperationException.
public  floattop(int margin)
     This method throws an UnsupportedOperationException.
public  inttype()
     Gets the type of the text element.
public  intverticalAlignment()
     Gets the vertical alignment.

Field Detail
arrayList
protected ArrayList arrayList(Code)
The ArrayList of Elements that are part of the content of the Cell.



colspan
protected int colspan(Code)
The colspan of the cell.



groupChange
protected boolean groupChange(Code)
Does this Cell force a group change?



header
protected boolean header(Code)
Is this Cell a header?



horizontalAlignment
protected int horizontalAlignment(Code)
The horizontal alignment of the cell content.



leading
float leading(Code)
The leading of the content inside the cell.



maxLines
protected int maxLines(Code)
Maximum number of lines allowed in the cell. The default value of this property is not to limit the maximum number of lines (contributed by dperezcar@fcc.es)



percentage
protected boolean percentage(Code)



rowspan
protected int rowspan(Code)
The rowspan of the cell.



showTruncation
String showTruncation(Code)
If a truncation happens due to the Cell.maxLines property, then this text will be added to indicate a truncation has happened. Default value is null, and means avoiding marking the truncation. A useful value of this property could be e.g. "..." (contributed by dperezcar@fcc.es)



useAscender
protected boolean useAscender(Code)
Indicates that the largest ascender height should be used to determine the height of the first line. Note that this only has an effect when rendered to PDF. Setting this to true can help with vertical alignment problems.



useBorderPadding
protected boolean useBorderPadding(Code)
Adjusts the cell contents to compensate for border widths. Note that this only has an effect when rendered to PDF.



useDescender
protected boolean useDescender(Code)
Indicates that the largest descender height should be added to the height of the last line (so characters like y don't dip into the border). Note that this only has an effect when rendered to PDF.



verticalAlignment
protected int verticalAlignment(Code)
The vertical alignment of the cell content.



width
protected float width(Code)
The width of the cell as a String. It can be an absolute value "100" or a percentage "20%".




Constructor Detail
Cell
public Cell()(Code)
Constructs an empty Cell.



Cell
public Cell(boolean dummy)(Code)
Constructs an empty Cell (for internal use only).
Parameters:
  dummy - a dummy value



Cell
public Cell(String content)(Code)
Constructs a Cell with a certain content.

The String will be converted into a Paragraph.
Parameters:
  content - a String




Cell
public Cell(Element element) throws BadElementException(Code)
Constructs a Cell with a certain Element.

if the element is a ListItem, Row or Cell, an exception will be thrown.
Parameters:
  element - the element
throws:
  BadElementException - when the creator was called with a ListItem, Row or Cell




Cell
public Cell(java.util.Properties attributes)(Code)
Returns a Cell that has been constructed taking in account the value of some attributes.
Parameters:
  attributes - Some attributes




Method Detail
add
public boolean add(Object o)(Code)
Add an Object to this cell.
Parameters:
  o - the object to add always true



addElement
public void addElement(Element element) throws BadElementException(Code)
Adds an element to this Cell.

Remark: you can't add ListItems, Rows, Cells, JPEGs, GIFs or PNGs to a Cell.
Parameters:
  element - The Element to add
throws:
  BadElementException - if the method was called with a ListItem, Row or Cell




bottom
public float bottom()(Code)
This method throws an UnsupportedOperationException. NACell.getBottom()



bottom
public float bottom(int margin)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  margin - NA



cellWidth
public String cellWidth()(Code)
Gets the width. a valueCell.getWidthAsString()



clear
public void clear()(Code)
Clears all the Elements of this Cell.



colspan
public int colspan()(Code)
Gets the colspan. a valueCell.getColspan()



createPdfPCell
public PdfPCell createPdfPCell() throws BadElementException(Code)
Creates a PdfPCell based on this Cell object. a PdfPCell
throws:
  BadElementException -



fill
void fill()(Code)
Makes sure there is at least 1 object in the Cell. Otherwise it might not be shown in the table.



getBottom
public float getBottom()(Code)
This method throws an UnsupportedOperationException. NA



getChunks
public ArrayList getChunks()(Code)
Gets all the chunks in this element. an ArrayList



getColspan
public int getColspan()(Code)
Gets the colspan. a value



getElements
public Iterator getElements()(Code)
Gets an iterator of Elements. an Iterator.



getGroupChange
public boolean getGroupChange()(Code)
Does this Cell force a group change? a value



getHorizontalAlignment
public int getHorizontalAlignment()(Code)
Gets the horizontal alignment. a value



getLeading
public float getLeading()(Code)
Gets the leading. a value



getLeft
public float getLeft()(Code)
This method throws an UnsupportedOperationException. NA



getMaxLines
public int getMaxLines()(Code)
Getter for Cell.maxLines the maxLines value



getRight
public float getRight()(Code)
This method throws an UnsupportedOperationException. NA



getRowspan
public int getRowspan()(Code)
Gets the rowspan. a value



getShowTruncation
public String getShowTruncation()(Code)
Getter for Cell.showTruncation the showTruncation value



getTop
public float getTop()(Code)
This method throws an UnsupportedOperationException. NA



getVerticalAlignment
public int getVerticalAlignment()(Code)
Gets the vertical alignment. a value



getWidth
public float getWidth()(Code)
Gets the width.



getWidthAsString
public String getWidthAsString()(Code)
Gets the width as a String. a value



header
public boolean header()(Code)
Is this Cell a header? a valueCell.isHeader()



horizontalAlignment
public int horizontalAlignment()(Code)
Gets the horizontal alignment. a valueCell.getHorizontalAlignment()



isEmpty
public boolean isEmpty()(Code)
Checks if the Cell is empty. false if there are non-empty Elements in the Cell.



isHeader
public boolean isHeader()(Code)
Is this Cell a header? a value



isTable
public boolean isTable()(Code)
Checks if this Cell is a placeholder for a (nested) table. true if the only element in this cell is a table



isUseAscender
public boolean isUseAscender()(Code)
Gets the value of Cell.useAscender useAscender



isUseBorderPadding
public boolean isUseBorderPadding()(Code)
Gets the value of Cell.useBorderPadding . useBorderPadding



isUseDescender
public boolean isUseDescender()(Code)
gets the value of Cell.useDescender useDescender



leading
public float leading()(Code)
Gets the leading. a valueCell.getLeading()



left
public float left()(Code)
This method throws an UnsupportedOperationException. NACell.getLeft()



left
public float left(int margin)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  margin - NA



noWrap
public boolean noWrap()(Code)
Get nowrap. a value



process
public boolean process(ElementListener listener)(Code)
Processes the element by adding it (or the different parts) to an ElementListener.
Parameters:
  listener - an ElementListener true if the element was processed successfully



right
public float right()(Code)
This method throws an UnsupportedOperationException. NACell.getRight()



right
public float right(int margin)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  margin - NA NA



rowspan
public int rowspan()(Code)
Gets the rowspan. a valueCell.getRowspan()



setBottom
public void setBottom(int value)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  value - NA



setColspan
public void setColspan(int value)(Code)
Sets the colspan.
Parameters:
  value - the new value



setGroupChange
public void setGroupChange(boolean value)(Code)
Sets group change.
Parameters:
  value - the new value



setHeader
public void setHeader(boolean value)(Code)
Sets header.
Parameters:
  value - the new value



setHorizontalAlignment
public void setHorizontalAlignment(int value)(Code)
Sets the horizontal alignment.
Parameters:
  value - the new value



setHorizontalAlignment
public void setHorizontalAlignment(String alignment)(Code)
Sets the alignment of this cell. This methods allows you to set the alignment as a String.
Parameters:
  alignment - the new alignment as a String



setLeading
public void setLeading(float value)(Code)
Sets the leading.
Parameters:
  value - the new value



setLeft
public void setLeft(int value)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  value - NA



setMaxLines
public void setMaxLines(int value)(Code)
Setter for Cell.maxLines
Parameters:
  value - the maximum number of lines



setNoWrap
public void setNoWrap(boolean value)(Code)
Set nowrap.
Parameters:
  value - the new value



setRight
public void setRight(int value)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  value - NA



setRowspan
public void setRowspan(int value)(Code)
Sets the rowspan.
Parameters:
  value - the new value



setShowTruncation
public void setShowTruncation(String value)(Code)
Setter for Cell.showTruncation
Parameters:
  value - Can be null for avoiding marking the truncation.



setTop
public void setTop(int value)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  value - NA



setUseAscender
public void setUseAscender(boolean use)(Code)
Sets the value of Cell.useAscender .
Parameters:
  use - use ascender height if true



setUseBorderPadding
public void setUseBorderPadding(boolean use)(Code)
Sets the value of Cell.useBorderPadding .
Parameters:
  use - adjust layour for borders if true



setUseDescender
public void setUseDescender(boolean use)(Code)
Sets the value of Cell.useDescender .
Parameters:
  use - use descender height if true



setVerticalAlignment
public void setVerticalAlignment(int value)(Code)
Sets the vertical alignment.
Parameters:
  value - the new value



setVerticalAlignment
public void setVerticalAlignment(String alignment)(Code)
Sets the alignment of this paragraph.
Parameters:
  alignment - the new alignment as a String



setWidth
public void setWidth(float value)(Code)
Sets the width.
Parameters:
  value - the new value



setWidth
public void setWidth(String value)(Code)
Sets the width. It can be an absolute value "100" or a percentage "20%"
Parameters:
  value - the new value



size
public int size()(Code)
Gets the number of Elements in the Cell. a size.



top
public float top()(Code)
This method throws an UnsupportedOperationException. NACell.getTop()



top
public float top(int margin)(Code)
This method throws an UnsupportedOperationException.
Parameters:
  margin - NA



type
public int type()(Code)
Gets the type of the text element. a type



verticalAlignment
public int verticalAlignment()(Code)
Gets the vertical alignment. a valueCell.getVerticalAlignment()



Fields inherited from com.lowagie.text.Rectangle
final public static int BOTTOM(Code)(Java Doc)
final public static int BOX(Code)(Java Doc)
final public static int LEFT(Code)(Java Doc)
final public static int NO_BORDER(Code)(Java Doc)
final public static int RIGHT(Code)(Java Doc)
final public static int TOP(Code)(Java Doc)
final public static int UNDEFINED(Code)(Java Doc)
protected Color backgroundColor(Code)(Java Doc)
protected int border(Code)(Java Doc)
protected Color borderColor(Code)(Java Doc)
protected Color borderColorBottom(Code)(Java Doc)
protected Color borderColorLeft(Code)(Java Doc)
protected Color borderColorRight(Code)(Java Doc)
protected Color borderColorTop(Code)(Java Doc)
protected float borderWidth(Code)(Java Doc)
protected float borderWidthBottom(Code)(Java Doc)
protected float borderWidthLeft(Code)(Java Doc)
protected float borderWidthRight(Code)(Java Doc)
protected float borderWidthTop(Code)(Java Doc)
protected float llx(Code)(Java Doc)
protected float lly(Code)(Java Doc)
protected int rotation(Code)(Java Doc)
protected float urx(Code)(Java Doc)
protected float ury(Code)(Java Doc)
protected boolean useVariableBorders(Code)(Java Doc)

Methods inherited from com.lowagie.text.Rectangle
public Color backgroundColor()(Code)(Java Doc)
public int border()(Code)(Java Doc)
public Color borderColor()(Code)(Java Doc)
public float borderWidth()(Code)(Java Doc)
public float bottom()(Code)(Java Doc)
public float bottom(float margin)(Code)(Java Doc)
public void cloneNonPositionParameters(Rectangle rect)(Code)(Java Doc)
public void disableBorderSide(int side)(Code)(Java Doc)
public void enableBorderSide(int side)(Code)(Java Doc)
public Color getBackgroundColor()(Code)(Java Doc)
public int getBorder()(Code)(Java Doc)
public Color getBorderColor()(Code)(Java Doc)
public Color getBorderColorBottom()(Code)(Java Doc)
public Color getBorderColorLeft()(Code)(Java Doc)
public Color getBorderColorRight()(Code)(Java Doc)
public Color getBorderColorTop()(Code)(Java Doc)
public float getBorderWidth()(Code)(Java Doc)
public float getBorderWidthBottom()(Code)(Java Doc)
public float getBorderWidthLeft()(Code)(Java Doc)
public float getBorderWidthRight()(Code)(Java Doc)
public float getBorderWidthTop()(Code)(Java Doc)
public float getBottom()(Code)(Java Doc)
public float getBottom(float margin)(Code)(Java Doc)
public ArrayList getChunks()(Code)(Java Doc)
public float getGrayFill()(Code)(Java Doc)
public float getHeight()(Code)(Java Doc)
public float getLeft()(Code)(Java Doc)
public float getLeft(float margin)(Code)(Java Doc)
public float getRight()(Code)(Java Doc)
public float getRight(float margin)(Code)(Java Doc)
public int getRotation()(Code)(Java Doc)
public float getTop()(Code)(Java Doc)
public float getTop(float margin)(Code)(Java Doc)
public float getWidth()(Code)(Java Doc)
public float grayFill()(Code)(Java Doc)
public boolean hasBorder(int type)(Code)(Java Doc)
public boolean hasBorders()(Code)(Java Doc)
public float height()(Code)(Java Doc)
public boolean isUseVariableBorders()(Code)(Java Doc)
public float left()(Code)(Java Doc)
public float left(float margin)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
public boolean process(ElementListener listener)(Code)(Java Doc)
public Rectangle rectangle(float top, float bottom)(Code)(Java Doc)
public float right()(Code)(Java Doc)
public float right(float margin)(Code)(Java Doc)
public Rectangle rotate()(Code)(Java Doc)
public void setBackgroundColor(Color value)(Code)(Java Doc)
public void setBorder(int value)(Code)(Java Doc)
public void setBorderColor(Color value)(Code)(Java Doc)
public void setBorderColorBottom(Color value)(Code)(Java Doc)
public void setBorderColorLeft(Color value)(Code)(Java Doc)
public void setBorderColorRight(Color value)(Code)(Java Doc)
public void setBorderColorTop(Color value)(Code)(Java Doc)
public void setBorderWidth(float value)(Code)(Java Doc)
public void setBorderWidthBottom(float borderWidthBottom)(Code)(Java Doc)
public void setBorderWidthLeft(float borderWidthLeft)(Code)(Java Doc)
public void setBorderWidthRight(float borderWidthRight)(Code)(Java Doc)
public void setBorderWidthTop(float borderWidthTop)(Code)(Java Doc)
public void setBottom(float value)(Code)(Java Doc)
public void setGrayFill(float value)(Code)(Java Doc)
public void setLeft(float value)(Code)(Java Doc)
public void setRight(float value)(Code)(Java Doc)
public void setTop(float value)(Code)(Java Doc)
public void setUseVariableBorders(boolean useVariableBorders)(Code)(Java Doc)
public void softCloneNonPositionParameters(Rectangle rect)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public float top()(Code)(Java Doc)
public float top(float margin)(Code)(Java Doc)
public int type()(Code)(Java Doc)
public float width()(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.