jdk/src/share/classes/sun/java2d/pipe/RegionIterator.java
changeset 12813 c10ab96dcf41
parent 5506 202f599c92aa
child 13165 679567fae315
equal deleted inserted replaced
12491:b3a91113026c 12813:c10ab96dcf41
    25 
    25 
    26 package sun.java2d.pipe;
    26 package sun.java2d.pipe;
    27 
    27 
    28 import java.awt.Rectangle;
    28 import java.awt.Rectangle;
    29 
    29 
       
    30 import javax.tools.annotation.GenerateNativeHeader;
       
    31 
    30 /**
    32 /**
    31  * This class defines the API for iterating through the bands
    33  * This class defines the API for iterating through the bands
    32  * of a region object.
    34  * of a region object.
    33  */
    35  */
       
    36 /* No native methods here, but the constants are needed in the supporting JNI code */
       
    37 @GenerateNativeHeader
    34 public class RegionIterator {
    38 public class RegionIterator {
    35     Region region;
    39     Region region;
    36     int curIndex;
    40     int curIndex;
    37     int numXbands;
    41     int numXbands;
    38 
    42