Java Doc for RectIterFallback.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » com » sun » media » jai » iterator » 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 » 6.0 JDK Modules » Java Advanced Imaging » com.sun.media.jai.iterator 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.media.jai.iterator.RectIterFallback

All known Subclasses:   com.sun.media.jai.iterator.WritableRectIterFallback,  com.sun.media.jai.iterator.RectIterCSM,
RectIterFallback
public class RectIterFallback implements RectIter(Code)

since:
   EA2


Field Summary
protected  intb
     The current band offset.
protected  Rectanglebounds
     The iterator bouning rectangle.
protected  DataBufferdataBuffer
     The DataBuffer of the current tile.
protected  RenderedImageim
     The source image.
protected  intlastX
     The (inclusive) largest X coordinate of the bounding rectangle.
protected  intlastY
     The (inclusive) largest Y coordinate of the bounding rectangle.
protected  intlocalX
     The current X pixel position minus the sample model translation .
protected  intlocalY
     The current Y pixel position minus the sample model translation .
protected  intnextXBoundary
     The next rightwards tile or image boundary.
protected  intnextYBoundary
     The next downwards tile or image boundary.
protected  intnumBands
     The number of bands of the source image.
protected  intprevXBoundary
     The next leftwards tile or image boundary.
protected  intprevYBoundary
     The next upwards tile or image boundary.
protected  SampleModelsampleModel
     The SampleModel for the tiles of the source image.
protected  intsampleModelTranslateX
     The X translation factor of the SampleModel of the current tile.
protected  intsampleModelTranslateY
     The X translation factor of the SampleModel of the current tile.
protected  intstartTileX
     The tile index of the leftmost column in the iterator's bounds.
protected  intstartTileY
     The tile index of the topmost row in the iterator's bounds.
protected  inttileGridXOffset
     The X offset of the source image tile grid.
protected  inttileGridYOffset
     The Y offset of the source image tile grid.
protected  inttileHeight
     The height of tiles in the source image.
protected  inttileWidth
     The width of tiles in the source image.
protected  inttileX
     The X index of the current tile.
protected  inttileXEnd
     The (inclusive) largest X coordinate of the current tile.
protected  inttileXStart
     The (inclusive) smallest X coordinate of the current tile.
protected  inttileY
     The Y index of the current tile.
protected  inttileYEnd
     The (inclusive) largest Y coordinate of the current tile.
protected  inttileYStart
     The (inclusive) smallest Y coordinate of the current tile.
protected  intx
     The current X pixel position.
protected  inty
     The current Y pixel position.

Constructor Summary
public  RectIterFallback(RenderedImage im, Rectangle bounds)
    

Method Summary
public  booleanfinishedBands()
    
public  booleanfinishedLines()
    
public  booleanfinishedPixels()
    
public  int[]getPixel(int[] iArray)
    
public  float[]getPixel(float[] fArray)
    
public  double[]getPixel(double[] dArray)
    
public  intgetSample()
    
public  intgetSample(int b)
    
public  doublegetSampleDouble()
    
public  doublegetSampleDouble(int b)
    
public  floatgetSampleFloat()
    
public  floatgetSampleFloat(int b)
    
public  voidjumpLines(int num)
    
public  voidjumpPixels(int num)
    
public  voidnextBand()
    
public  booleannextBandDone()
    
public  voidnextLine()
    
public  booleannextLineDone()
    
public  voidnextPixel()
    
public  booleannextPixelDone()
    
protected  voidsetDataBuffer()
    
final protected  voidsetTileXBounds()
    
final protected  voidsetTileYBounds()
    
public  voidstartBands()
    
public  voidstartLines()
    
public  voidstartPixels()
    

Field Detail
b
protected int b(Code)
The current band offset.



bounds
protected Rectangle bounds(Code)
The iterator bouning rectangle.



dataBuffer
protected DataBuffer dataBuffer(Code)
The DataBuffer of the current tile.



im
protected RenderedImage im(Code)
The source image.



lastX
protected int lastX(Code)
The (inclusive) largest X coordinate of the bounding rectangle.



lastY
protected int lastY(Code)
The (inclusive) largest Y coordinate of the bounding rectangle.



localX
protected int localX(Code)
The current X pixel position minus the sample model translation .



localY
protected int localY(Code)
The current Y pixel position minus the sample model translation .



nextXBoundary
protected int nextXBoundary(Code)
The next rightwards tile or image boundary.



nextYBoundary
protected int nextYBoundary(Code)
The next downwards tile or image boundary.



numBands
protected int numBands(Code)
The number of bands of the source image.



prevXBoundary
protected int prevXBoundary(Code)
The next leftwards tile or image boundary.



prevYBoundary
protected int prevYBoundary(Code)
The next upwards tile or image boundary.



sampleModel
protected SampleModel sampleModel(Code)
The SampleModel for the tiles of the source image.



sampleModelTranslateX
protected int sampleModelTranslateX(Code)
The X translation factor of the SampleModel of the current tile.



sampleModelTranslateY
protected int sampleModelTranslateY(Code)
The X translation factor of the SampleModel of the current tile.



startTileX
protected int startTileX(Code)
The tile index of the leftmost column in the iterator's bounds.



startTileY
protected int startTileY(Code)
The tile index of the topmost row in the iterator's bounds.



tileGridXOffset
protected int tileGridXOffset(Code)
The X offset of the source image tile grid.



tileGridYOffset
protected int tileGridYOffset(Code)
The Y offset of the source image tile grid.



tileHeight
protected int tileHeight(Code)
The height of tiles in the source image.



tileWidth
protected int tileWidth(Code)
The width of tiles in the source image.



tileX
protected int tileX(Code)
The X index of the current tile.



tileXEnd
protected int tileXEnd(Code)
The (inclusive) largest X coordinate of the current tile.



tileXStart
protected int tileXStart(Code)
The (inclusive) smallest X coordinate of the current tile.



tileY
protected int tileY(Code)
The Y index of the current tile.



tileYEnd
protected int tileYEnd(Code)
The (inclusive) largest Y coordinate of the current tile.



tileYStart
protected int tileYStart(Code)
The (inclusive) smallest Y coordinate of the current tile.



x
protected int x(Code)
The current X pixel position.



y
protected int y(Code)
The current Y pixel position.




Constructor Detail
RectIterFallback
public RectIterFallback(RenderedImage im, Rectangle bounds)(Code)




Method Detail
finishedBands
public boolean finishedBands()(Code)



finishedLines
public boolean finishedLines()(Code)



finishedPixels
public boolean finishedPixels()(Code)



getPixel
public int[] getPixel(int[] iArray)(Code)



getPixel
public float[] getPixel(float[] fArray)(Code)



getPixel
public double[] getPixel(double[] dArray)(Code)



getSample
public int getSample()(Code)



getSample
public int getSample(int b)(Code)



getSampleDouble
public double getSampleDouble()(Code)



getSampleDouble
public double getSampleDouble(int b)(Code)



getSampleFloat
public float getSampleFloat()(Code)



getSampleFloat
public float getSampleFloat(int b)(Code)



jumpLines
public void jumpLines(int num)(Code)



jumpPixels
public void jumpPixels(int num)(Code)



nextBand
public void nextBand()(Code)



nextBandDone
public boolean nextBandDone()(Code)



nextLine
public void nextLine()(Code)



nextLineDone
public boolean nextLineDone()(Code)



nextPixel
public void nextPixel()(Code)



nextPixelDone
public boolean nextPixelDone()(Code)



setDataBuffer
protected void setDataBuffer()(Code)



setTileXBounds
final protected void setTileXBounds()(Code)



setTileYBounds
final protected void setTileYBounds()(Code)



startBands
public void startBands()(Code)



startLines
public void startLines()(Code)



startPixels
public void startPixels()(Code)



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.