|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.enough.polish.midp.ui.NativeGraphicsImpl
public class NativeGraphicsImpl
Provides access to the native LCDUI Graphics object.
Copyright Enough Software 2010
| Constructor Summary | |
|---|---|
NativeGraphicsImpl(Graphics g)
|
|
| Method Summary | |
|---|---|
void |
clipRect(int x,
int y,
int width,
int height)
Intersects the current clip with the specified rectangle. |
void |
copyArea(int xSrc,
int ySrc,
int width,
int height,
int xDest,
int yDest,
int anchor)
Copies the contents of a rectangular area (x_src, y_src, width, height) to a destination area,
whose anchor point identified by anchor is located at
(x_dest, y_dest). |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
Draws the outline of a circular or elliptical arc covering the specified rectangle, using the current color and stroke style. |
void |
drawChar(char character,
int x,
int y,
int anchor)
Draws the specified character using the current font and color. |
void |
drawChars(char[] data,
int offset,
int length,
int x,
int y,
int anchor)
Draws the specified characters using the current font and color. |
void |
drawImage(Image img,
int x,
int y,
int anchor)
Draws the specified image by using the anchor point. |
void |
drawLine(int x1,
int y1,
int x2,
int y2)
Draws a line between the coordinates (x1,y1) and
(x2,y2) using
the current color and stroke style. |
void |
drawRect(int x,
int y,
int width,
int height)
Draws the outline of the specified rectangle using the current color and stroke style. |
void |
drawRegion(Image src,
int xSrc,
int ySrc,
int width,
int height,
int transform,
int xDest,
int yDest,
int anchor)
Copies a region of the specified source image to a location within the destination, possibly transforming (rotating and reflecting) the image data using the chosen transform function. |
void |
drawRGB(int[] rgbData,
int offset,
int scanlength,
int x,
int y,
int width,
int height,
boolean processAlpha)
Renders a series of device-independent RGB+transparency values in a specified region. |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Draws the outline of the specified rounded corner rectangle using the current color and stroke style. |
void |
drawString(String str,
int x,
int y,
int anchor)
Draws the specified String using the current font and color. |
void |
drawSubstring(String str,
int offset,
int len,
int x,
int y,
int anchor)
Draws the specified String using the current font and color. |
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
Fills a circular or elliptical arc covering the specified rectangle. |
void |
fillRect(int x,
int y,
int width,
int height)
Fills the specified rectangle with the current color. |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
Fills the specified rounded corner rectangle with the current color. |
void |
fillTriangle(int x1,
int y1,
int x2,
int y2,
int x3,
int y3)
Fills the specified triangle will the current color. |
int |
getBlueComponent()
Gets the blue component of the current color. |
int |
getClipHeight()
Gets the height of the current clipping area. |
int |
getClipWidth()
Gets the width of the current clipping area. |
int |
getClipX()
Gets the X offset of the current clipping area, relative to the coordinate system origin of this graphics context. |
int |
getClipY()
Gets the Y offset of the current clipping area, relative to the coordinate system origin of this graphics context. |
int |
getColor()
Gets the current color. |
int |
getDisplayColor(int color)
Gets the color that will be displayed if the specified color is requested. |
Font |
getFont()
Gets the current font. |
int |
getGrayScale()
Gets the current grayscale value of the color being used for rendering operations. |
int |
getGreenComponent()
Gets the green component of the current color. |
int |
getRedComponent()
Gets the red component of the current color. |
int |
getStrokeStyle()
Gets the stroke style used for drawing operations. |
int |
getTranslateX()
Gets the X coordinate of the translated origin of this graphics context. |
int |
getTranslateY()
Gets the Y coordinate of the translated origin of this graphics context. |
void |
setClip(int x,
int y,
int width,
int height)
Sets the current clip to the rectangle specified by the given coordinates. |
void |
setColor(int rgb)
Sets the current color to the specified RGB values. |
void |
setColor(int red,
int green,
int blue)
Sets the current color to the specified RGB values. |
void |
setFont(Font font)
Sets the font for all subsequent text rendering operations. |
void |
setGrayScale(int value)
Sets the current grayscale to be used for all subsequent rendering operations. |
void |
setStrokeStyle(int style)
Sets the stroke style used for drawing lines, arcs, rectangles, and rounded rectangles. |
void |
translate(int x,
int y)
Translates the origin of the graphics context to the point (x, y) in the current coordinate system. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public NativeGraphicsImpl(Graphics g)
| Method Detail |
|---|
public void drawImage(Image img,
int x,
int y,
int anchor)
NativeGraphicsIf the source image contains transparent pixels, the corresponding pixels in the destination image must be left untouched. If the source image contains partially transparent pixels, a compositing operation must be performed with the destination pixels, leaving all pixels of the destination image fully opaque.
If img is the same as the destination of this Graphics
object, the result is undefined. For copying areas within an
Image, copyArea should be used instead.
drawImage in interface NativeGraphicsimg - - the specified image to be drawnx - - the x coordinate of the anchor pointy - - the y coordinate of the anchor pointanchor - - the anchor point for positioning the imageImage
public void drawRegion(Image src,
int xSrc,
int ySrc,
int width,
int height,
int transform,
int xDest,
int yDest,
int anchor)
NativeGraphicsThe destination, if it is an image, must not be the same image as the source image. If it is, an exception is thrown. This restriction is present in order to avoid ill-defined behaviors that might occur if overlapped, transformed copies were permitted.
The transform function used must be one of the following, as defined
in the Sprite class:
Sprite.TRANS_NONE - causes the specified image
region to be copied unchanged
Sprite.TRANS_ROT90 - causes the specified image
region to be rotated clockwise by 90 degrees.
Sprite.TRANS_ROT180 - causes the specified image
region to be rotated clockwise by 180 degrees.
Sprite.TRANS_ROT270 - causes the specified image
region to be rotated clockwise by 270 degrees.
Sprite.TRANS_MIRROR - causes the specified image
region to be reflected about its vertical center.
Sprite.TRANS_MIRROR_ROT90 - causes the specified image
region to be reflected about its vertical center and then rotated
clockwise by 90 degrees.
Sprite.TRANS_MIRROR_ROT180 - causes the specified image
region to be reflected about its vertical center and then rotated
clockwise by 180 degrees.
Sprite.TRANS_MIRROR_ROT270 - causes the specified image
region to be reflected about its vertical center and then rotated
clockwise by 270 degrees.
If the source region contains transparent pixels, the corresponding pixels in the destination region must be left untouched. If the source region contains partially transparent pixels, a compositing operation must be performed with the destination pixels, leaving all pixels of the destination region fully opaque.
The (x_src, y_src) coordinates are relative to
the upper left
corner of the source image. The x_src,
y_src, width, and height
parameters specify a rectangular region of the source image. It is
illegal for this region to extend beyond the bounds of the source
image. This requires that:
|
The (x_dest, y_dest) coordinates are relative to
the coordinate
system of this Graphics object. It is legal for the destination
area to extend beyond the bounds of the Graphics
object. Pixels
outside of the bounds of the Graphics object will
not be drawn.
The transform is applied to the image data from the region of the
source image, and the result is rendered with its anchor point
positioned at location (x_dest, y_dest) in the
destination.
drawRegion in interface NativeGraphicssrc - - the source image to copy fromxSrc - - the x coordinate of the upper left corner of the region within the source image to copyySrc - - the y coordinate of the upper left corner of the region within the source image to copywidth - - the width of the region to copyheight - - the height of the region to copytransform - - the desired transformation for the selected region being copiedxDest - - the x coordinate of the anchor point in the destination drawing areayDest - - the y coordinate of the anchor point in the destination drawing areaanchor - - the anchor point for positioning the region within the destination imagepublic void setFont(Font font)
NativeGraphicsnull, it is equivalent to
setFont(Font.getDefaultFont()).
setFont in interface NativeGraphicsfont - - the specified fontFont,
NativeGraphics.getFont(),
NativeGraphics.drawString(java.lang.String, int, int, int),
NativeGraphics.drawChars(char[], int, int, int, int, int)
public void clipRect(int x,
int y,
int width,
int height)
NativeGraphicssetClip method.
Rendering operations have no effect outside of the clipping area.
clipRect in interface NativeGraphicsx - - the x coordinate of the rectangle to intersect the clip withy - - the y coordinate of the rectangle to intersect the clip withwidth - - the width of the rectangle to intersect the clip withheight - - the height of the rectangle to intersect the clip withNativeGraphics.setClip(int, int, int, int)
public void copyArea(int xSrc,
int ySrc,
int width,
int height,
int xDest,
int yDest,
int anchor)
NativeGraphics(x_src, y_src, width, height) to a destination area,
whose anchor point identified by anchor is located at
(x_dest, y_dest). The effect must be that the
destination area
contains an exact copy of the contents of the source area
immediately prior to the invocation of this method. This result must
occur even if the source and destination areas overlap.
The points (x_src, y_src) and (x_dest,
y_dest) are both specified
relative to the coordinate system of the Graphics
object. It is
illegal for the source region to extend beyond the bounds of the
graphic object. This requires that:
|
where tx and ty represent the X and Y
coordinates of the translated origin of this graphics object, as
returned by getTranslateX() and
getTranslateY(), respectively.
However, it is legal for the destination area to extend beyond
the bounds of the Graphics object. Pixels outside
of the bounds of
the Graphics object will not be drawn.
The copyArea method is allowed on all
Graphics objects except those
whose destination is the actual display device. This restriction is
necessary because allowing a copyArea method on
the display would
adversely impact certain techniques for implementing
double-buffering.
Like other graphics operations, the copyArea
method uses the Source
Over Destination rule for combining pixels. However, since it is
defined only for mutable images, which can contain only fully opaque
pixels, this is effectively the same as pixel replacement.
copyArea in interface NativeGraphicsxSrc - - the x coordinate of upper left corner of source areaySrc - - the y coordinate of upper left corner of source areawidth - - the width of the source areaheight - - the height of the source areaxDest - - the x coordinate of the destination anchor pointyDest - - the y coordinate of the destination anchor pointanchor - - the anchor point for positioning the region within the destination image
public void drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
NativeGraphics
The resulting arc begins at startAngle and extends
for arcAngle degrees, using the current color.
Angles are interpreted such that 0 degrees
is at the 3 o'clock position.
A positive value indicates a counter-clockwise rotation
while a negative value indicates a clockwise rotation.
The center of the arc is the center of the rectangle whose origin
is (x, y) and whose size is specified by the
width and height arguments.
The resulting arc covers an area
width + 1 pixels wide
by height + 1 pixels tall.
If either width or height is less than zero,
nothing is drawn.
The angles are specified relative to the non-square extents of
the bounding rectangle such that 45 degrees always
falls on the
line from the center of the ellipse to the upper right corner of
the bounding rectangle. As a result, if the bounding rectangle is
noticeably longer in one axis than the other, the angles to the
start and end of the arc segment will be skewed farther along the
longer axis of the bounds.
drawArc in interface NativeGraphicsx - - the x coordinate of the upper-left corner of the arc to be drawny - - the y coordinate of the upper-left corner of the arc to be drawnwidth - - the width of the arc to be drawnheight - - the height of the arc to be drawnstartAngle - - the beginning anglearcAngle - - the angular extent of the arc, relative to the start angleNativeGraphics.fillArc(int, int, int, int, int, int)
public void drawChar(char character,
int x,
int y,
int anchor)
NativeGraphics
drawChar in interface NativeGraphicscharacter - - the character to be drawnx - - the x coordinate of the anchor pointy - - the y coordinate of the anchor pointanchor - - the anchor point for positioning the text; see anchor pointsNativeGraphics.drawString(java.lang.String, int, int, int),
NativeGraphics.drawChars(char[], int, int, int, int, int)
public void drawChars(char[] data,
int offset,
int length,
int x,
int y,
int anchor)
NativeGraphicsThe offset and length parameters must
specify a valid range of characters within
the character array data.
The offset parameter must be within the
range [0..(data.length)], inclusive.
The length parameter
must be a non-negative integer such that
(offset + length) <= data.length.
drawChars in interface NativeGraphicsdata - - the array of characters to be drawnoffset - - the start offset in the datalength - - the number of characters to be drawnx - - the x coordinate of the anchor pointy - - the y coordinate of the anchor pointanchor - - the anchor point for positioning the text; see anchor pointsNativeGraphics.drawString(java.lang.String, int, int, int)
public void drawLine(int x1,
int y1,
int x2,
int y2)
NativeGraphics(x1,y1) and
(x2,y2) using
the current color and stroke style.
drawLine in interface NativeGraphicsx1 - - the x coordinate of the start of the liney1 - - the y coordinate of the start of the linex2 - - the x coordinate of the end of the liney2 - - the y coordinate of the end of the line
public void drawRGB(int[] rgbData,
int offset,
int scanlength,
int x,
int y,
int width,
int height,
boolean processAlpha)
NativeGraphicsrgbData in a format
with 24 bits of RGB and an eight-bit alpha value
(0xAARRGGBB),
with the first value stored at the specified offset. The
scanlength
specifies the relative offset within the array between the
corresponding pixels of consecutive rows. Any value for
scanlength is acceptable (even negative values)
provided that all resulting references are within the
bounds of the rgbData array. The ARGB data is
rasterized horizontally from left to right within each row.
The ARGB values are
rendered in the region specified by x,
y, width and height, and
the operation is subject to the current clip region
and translation for this Graphics object.
Consider P(a,b) to be the value of the pixel
located at column a and row b of the
Image, where rows and columns are numbered downward from the
top starting at zero, and columns are numbered rightward from
the left starting at zero. This operation can then be defined
as:
|
for
|
This capability is provided in the Graphics
class so that it can be
used to render both to the screen and to offscreen
Image objects. The
ability to retrieve ARGB values is provided by the Image.getRGB(int[], int, int, int, int, int, int)
method.
If processAlpha is true, the
high-order byte of the ARGB format
specifies opacity; that is, 0x00RRGGBB specifies a
fully transparent
pixel and 0xFFRRGGBB specifies a fully opaque
pixel. Intermediate
alpha values specify semitransparency. If the implementation does not
support alpha blending for image rendering operations, it must remove
any semitransparency from the source data prior to performing any
rendering. (See Alpha Processing for
further discussion.)
If processAlpha is false, the alpha
values are ignored and all pixels
must be treated as completely opaque.
The mapping from ARGB values to the device-dependent pixels is platform-specific and may require significant computation.
drawRGB in interface NativeGraphicsrgbData - - an array of ARGB values in the format 0xAARRGGBBoffset - - the array index of the first ARGB valuescanlength - - the relative array offset between the corresponding pixels in consecutive rows in the rgbData arrayx - - the horizontal location of the region to be renderedy - - the vertical location of the region to be renderedwidth - - the width of the region to be renderedheight - - the height of the region to be renderedprocessAlpha - - true if rgbData has an alpha channel, false if all pixels are fully opaque
public void drawRect(int x,
int y,
int width,
int height)
NativeGraphics(width + 1)
pixels wide by (height + 1) pixels tall.
If either width or height is less than
zero, nothing is drawn.
drawRect in interface NativeGraphicsx - - the x coordinate of the rectangle to be drawny - - the y coordinate of the rectangle to be drawnwidth - - the width of the rectangle to be drawnheight - - the height of the rectangle to be drawnNativeGraphics.fillRect(int, int, int, int)
public void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
NativeGraphics(width +
1) pixels wide
by (height + 1) pixels tall.
If either width or height is less than
zero, nothing is drawn.
drawRoundRect in interface NativeGraphicsx - - the x coordinate of the rectangle to be drawny - - the y coordinate of the rectangle to be drawnwidth - - the width of the rectangle to be drawnheight - - the height of the rectangle to be drawnarcWidth - - the horizontal diameter of the arc at the four cornersarcHeight - - the vertical diameter of the arc at the four cornersNativeGraphics.fillRoundRect(int, int, int, int, int, int)
public void drawString(String str,
int x,
int y,
int anchor)
NativeGraphicsString using the current font and color.
The x,y position is the position of the anchor point.
See anchor points.
drawString in interface NativeGraphicsstr - - the String to be drawnx - - the x coordinate of the anchor pointy - - the y coordinate of the anchor pointanchor - - the anchor point for positioning the textNativeGraphics.drawChars(char[], int, int, int, int, int)
public void drawSubstring(String str,
int offset,
int len,
int x,
int y,
int anchor)
NativeGraphicsString using the current font and color.
The x,y position is the position of the anchor point.
See anchor points.
The offset and len parameters must
specify a valid range of characters within
the string str.
The offset parameter must be within the
range [0..(str.length())], inclusive.
The len parameter
must be a non-negative integer such that
(offset + len) <= str.length().
drawSubstring in interface NativeGraphicsstr - - the String to be drawnoffset - - zero-based index of first character in the substringlen - - length of the substringx - - the x coordinate of the anchor pointy - - the y coordinate of the anchor pointanchor - - the anchor point for positioning the textNativeGraphics.drawString(String, int, int, int).
public void fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
NativeGraphics
The resulting arc begins at startAngle and extends
for arcAngle degrees.
Angles are interpreted such that 0 degrees
is at the 3 o'clock position.
A positive value indicates a counter-clockwise rotation
while a negative value indicates a clockwise rotation.
The center of the arc is the center of the rectangle whose origin
is (x, y) and whose size is specified by the
width and height arguments.
If either width or height is zero or less,
nothing is drawn.
The filled region consists of the "pie wedge"
region bounded
by the arc
segment as if drawn by drawArc(), the radius extending from
the center to
this arc at startAngle degrees, and radius extending
from the
center to this arc at startAngle + arcAngle degrees.
The angles are specified relative to the non-square extents of
the bounding rectangle such that 45 degrees always
falls on the
line from the center of the ellipse to the upper right corner of
the bounding rectangle. As a result, if the bounding rectangle is
noticeably longer in one axis than the other, the angles to the
start and end of the arc segment will be skewed farther along the
longer axis of the bounds.
fillArc in interface NativeGraphicsx - - the x coordinate of the upper-left corner of the arc to be filled.y - - the y coordinate of the upper-left corner of the arc to be filled.width - - the width of the arc to be filledheight - - the height of the arc to be filledstartAngle - - the beginning angle.arcAngle - - the angular extent of the arc, relative to the start angle.NativeGraphics.drawArc(int, int, int, int, int, int)
public void fillRect(int x,
int y,
int width,
int height)
NativeGraphics
fillRect in interface NativeGraphicsx - - the x coordinate of the rectangle to be filledy - - the y coordinate of the rectangle to be filledwidth - - the width of the rectangle to be filledheight - - the height of the rectangle to be filledNativeGraphics.drawRect(int, int, int, int)
public void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
NativeGraphicswidth or height is zero or less,
nothing is drawn.
fillRoundRect in interface NativeGraphicsx - - the x coordinate of the rectangle to be filledy - - the y coordinate of the rectangle to be filledwidth - - the width of the rectangle to be filledheight - - the height of the rectangle to be filledarcWidth - - the horizontal diameter of the arc at the four cornersarcHeight - - the vertical diameter of the arc at the four cornersNativeGraphics.drawRoundRect(int, int, int, int, int, int)
public void fillTriangle(int x1,
int y1,
int x2,
int y2,
int x3,
int y3)
NativeGraphics
fillTriangle in interface NativeGraphicsx1 - - the x coordinate of the first vertex of the triangley1 - - the y coordinate of the first vertex of the trianglex2 - - the x coordinate of the second vertex of the triangley2 - - the y coordinate of the second vertex of the trianglex3 - - the x coordinate of the third vertex of the triangley3 - - the y coordinate of the third vertex of the trianglepublic int getBlueComponent()
NativeGraphics
getBlueComponent in interface NativeGraphicsNativeGraphics.setColor(int, int, int)public int getClipHeight()
NativeGraphics
getClipHeight in interface NativeGraphicsNativeGraphics.clipRect(int, int, int, int),
NativeGraphics.setClip(int, int, int, int)public int getClipWidth()
NativeGraphics
getClipWidth in interface NativeGraphicsNativeGraphics.clipRect(int, int, int, int),
NativeGraphics.setClip(int, int, int, int)public int getClipX()
NativeGraphicsgetClip operation into two methods returning
integers is more performance and memory efficient than one
getClip() call returning an object.
getClipX in interface NativeGraphicsNativeGraphics.clipRect(int, int, int, int),
NativeGraphics.setClip(int, int, int, int)public int getClipY()
NativeGraphicsgetClip operation into two methods returning
integers is more performance and memory efficient than one
getClip() call returning an object.
getClipY in interface NativeGraphicsNativeGraphics.clipRect(int, int, int, int),
NativeGraphics.setClip(int, int, int, int)public int getColor()
NativeGraphics
getColor in interface NativeGraphicsNativeGraphics.setColor(int, int, int)public int getDisplayColor(int color)
NativeGraphics0xFFFFFF (white) or 0x000000 (black)
depending on the brightness of the specified color.
getDisplayColor in interface NativeGraphicscolor - - the desired color (in 0x00RRGGBB format, the high-order byte is ignored)
public Font getFont()
NativeGraphics
getFont in interface NativeGraphicsFont,
NativeGraphics.setFont(Font)public int getGrayScale()
NativeGraphicssetGrayScale(), that value is simply
returned. If the color was set by one of the methods that allows setting
of the red, green, and blue components, the value returned is
computed from
the RGB color components (possibly in a device-specific fashion)
that best
approximates the brightness of that color.
getGrayScale in interface NativeGraphicsNativeGraphics.setGrayScale(int)public int getGreenComponent()
NativeGraphics
getGreenComponent in interface NativeGraphicsNativeGraphics.setColor(int, int, int)public int getRedComponent()
NativeGraphics
getRedComponent in interface NativeGraphicsNativeGraphics.setColor(int, int, int)public int getStrokeStyle()
NativeGraphics
getStrokeStyle in interface NativeGraphicsNativeGraphics.setStrokeStyle(int)public int getTranslateX()
NativeGraphics
getTranslateX in interface NativeGraphicspublic int getTranslateY()
NativeGraphics
getTranslateY in interface NativeGraphics
public void setClip(int x,
int y,
int width,
int height)
NativeGraphics
setClip in interface NativeGraphicsx - - the x coordinate of the new clip rectangley - - the y coordinate of the new clip rectanglewidth - - the width of the new clip rectangleheight - - the height of the new clip rectangleNativeGraphics.clipRect(int, int, int, int)
public void setColor(int red,
int green,
int blue)
NativeGraphics
setColor in interface NativeGraphicsred - - the red component of the color being set in range 0-255green - - the green component of the color being set in range 0-255blue - - the blue component of the color being set in range 0-255NativeGraphics.getColor()public void setColor(int rgb)
NativeGraphics0x00RRGGBB. The high
order byte of
this value is ignored.
setColor in interface NativeGraphicsrgb - - the color being setNativeGraphics.getColor()public void setGrayScale(int value)
NativeGraphics0-255.
setGrayScale in interface NativeGraphicsvalue - - the desired grayscale valueNativeGraphics.getGrayScale()public void setStrokeStyle(int style)
NativeGraphics
setStrokeStyle in interface NativeGraphicsstyle - - can be SOLID or DOTTEDNativeGraphics.getStrokeStyle()
public void translate(int x,
int y)
NativeGraphics(x, y) in the current coordinate system. All coordinates
used in subsequent rendering operations on this graphics
context will be relative to this new origin.
The effect of calls to translate() are
cumulative. For example, calling
translate(1, 2) and then translate(3,
4) results in a translation of
(4, 6).
The application can set an absolute origin (ax,
ay) using the following
technique:
g.translate(ax - g.getTranslateX(), ay - g.getTranslateY())
translate in interface NativeGraphicsx - - the x coordinate of the new translation originy - - the y coordinate of the new translation originNativeGraphics.getTranslateX(),
NativeGraphics.getTranslateY()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||