|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.awt.Graphics javax.swing.DebugGraphics
public class DebugGraphics
支持圖形除錯的圖形子類別。覆寫 Graphics 中的大多數方法。DebugGraphics 物件很少通過手工創建。它們通常在 JComponent 的 debugGraphicsOptions 因使用 setDebugGraphicsOptions() 方法而發生更改時自動創建。
註:必須關閉雙緩衝來使用 DebugGraphics:RepaintManager repaintManager = RepaintManager.currentManager(component); repaintManager.setDoubleBufferingEnabled(false);
JComponent.setDebugGraphicsOptions(int)
,
RepaintManager.currentManager(java.awt.Component)
,
RepaintManager.setDoubleBufferingEnabled(boolean)
欄位摘要 | |
---|---|
static int |
BUFFERED_OPTION
在一個單獨的 Frame 中顯示已緩衝的操作。 |
static int |
FLASH_OPTION
Flash 圖形操作。 |
static int |
LOG_OPTION
記錄圖形操作。 |
static int |
NONE_OPTION
不要除錯圖形操作。 |
建構子摘要 | |
---|---|
DebugGraphics()
建構一個支持減速繪製的新除錯圖形上下文。 |
|
DebugGraphics(Graphics graphics)
根據現有圖形上下文建構一個除錯圖形上下文,該上下文支持減慢繪製。 |
|
DebugGraphics(Graphics graphics,
JComponent component)
根據現有圖形上下文建構一個除錯圖形上下文,該上下文可以減慢指定元件的繪製。 |
方法摘要 | |
---|---|
void |
clearRect(int x,
int y,
int width,
int height)
覆寫 Graphics.clearRect 。 |
void |
clipRect(int x,
int y,
int width,
int height)
覆寫 Graphics.clipRect 。 |
void |
copyArea(int x,
int y,
int width,
int height,
int destX,
int destY)
覆寫 Graphics.copyArea 。 |
Graphics |
create()
覆寫 Graphics.create 來返回一個 DebugGraphics 物件。 |
Graphics |
create(int x,
int y,
int width,
int height)
覆寫 Graphics.create 來返回一個 DebugGraphics 物件。 |
void |
dispose()
覆寫 Graphics.dispose 。 |
void |
draw3DRect(int x,
int y,
int width,
int height,
boolean raised)
覆寫 Graphics.draw3DRect 。 |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
覆寫 Graphics.drawArc 。 |
void |
drawBytes(byte[] data,
int offset,
int length,
int x,
int y)
覆寫 Graphics.drawBytes 。 |
void |
drawChars(char[] data,
int offset,
int length,
int x,
int y)
覆寫 Graphics.drawChars 。 |
boolean |
drawImage(Image img,
int x,
int y,
Color bgcolor,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
boolean |
drawImage(Image img,
int x,
int y,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
boolean |
drawImage(Image img,
int x,
int y,
int width,
int height,
Color bgcolor,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
boolean |
drawImage(Image img,
int x,
int y,
int width,
int height,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
boolean |
drawImage(Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
Color bgcolor,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
boolean |
drawImage(Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
ImageObserver observer)
覆寫 Graphics.drawImage 。 |
void |
drawLine(int x1,
int y1,
int x2,
int y2)
覆寫 Graphics.drawLine 。 |
void |
drawOval(int x,
int y,
int width,
int height)
覆寫 Graphics.drawOval 。 |
void |
drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
覆寫 Graphics.drawPolygon 。 |
void |
drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
覆寫 Graphics.drawPolyline 。 |
void |
drawRect(int x,
int y,
int width,
int height)
覆寫 Graphics.drawRect 。 |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
覆寫 Graphics.drawRoundRect 。 |
void |
drawString(AttributedCharacterIterator iterator,
int x,
int y)
覆寫 Graphics.drawString 。 |
void |
drawString(String aString,
int x,
int y)
覆寫 Graphics.drawString 。 |
void |
fill3DRect(int x,
int y,
int width,
int height,
boolean raised)
覆寫 Graphics.fill3DRect 。 |
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
覆寫 Graphics.fillArc 。 |
void |
fillOval(int x,
int y,
int width,
int height)
覆寫 Graphics.fillOval 。 |
void |
fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
覆寫 Graphics.fillPolygon 。 |
void |
fillRect(int x,
int y,
int width,
int height)
覆寫 Graphics.fillRect 。 |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
覆寫 Graphics.fillRoundRect 。 |
static Color |
flashColor()
返回用於 flash 繪製操作的 Color。 |
static int |
flashCount()
繪製操作將要 flash 的次數。 |
static int |
flashTime()
返回繪製操作 flash 的時間延遲。 |
Shape |
getClip()
覆寫 Graphics.getClip 。 |
Rectangle |
getClipBounds()
覆寫 Graphics.getClipBounds 。 |
Color |
getColor()
返回用於文本繪製操作的 Color。 |
int |
getDebugOptions()
返回此 DebugGraphics 的當前除錯選項。 |
Font |
getFont()
返回用於文本繪製操作的 Font。 |
FontMetrics |
getFontMetrics()
覆寫 Graphics.getFontMetrics 。 |
FontMetrics |
getFontMetrics(Font f)
覆寫 Graphics.getFontMetrics 。 |
boolean |
isDrawingBuffer()
返回 drawingBuffer 值。 |
static PrintStream |
logStream()
返回 DebugGraphics 在其中記錄繪製操作的串流。 |
void |
setClip(int x,
int y,
int width,
int height)
覆寫 Graphics.setClip 。 |
void |
setClip(Shape clip)
覆寫 Graphics.setClip 。 |
void |
setColor(Color aColor)
設置用於繪製和填充線條和圖形的顏色。 |
void |
setDebugOptions(int options)
啟用/禁用有關每個圖形操作的診斷資訊。 |
static void |
setFlashColor(Color flashColor)
設置用於 flash 繪製操作的 Color。 |
static void |
setFlashCount(int flashCount)
設置繪製操作將要 flash 的次數。 |
static void |
setFlashTime(int flashTime)
設置繪製操作 flash 的時間延遲。 |
void |
setFont(Font aFont)
設置用於文本繪製操作的 Font。 |
static void |
setLogStream(PrintStream stream)
設置 DebugGraphics 在其中記錄繪製操作的串流。 |
void |
setPaintMode()
覆寫 Graphics.setPaintMode 。 |
void |
setXORMode(Color aColor)
覆寫 Graphics.setXORMode 。 |
void |
translate(int x,
int y)
覆寫 Graphics.translate 。 |
從類別 java.awt.Graphics 繼承的方法 |
---|
drawPolygon, fillPolygon, finalize, getClipBounds, getClipRect, hitClip, toString |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
欄位詳細資訊 |
---|
public static final int LOG_OPTION
public static final int FLASH_OPTION
public static final int BUFFERED_OPTION
Frame
中顯示已緩衝的操作。
public static final int NONE_OPTION
建構子詳細資訊 |
---|
public DebugGraphics()
public DebugGraphics(Graphics graphics, JComponent component)
graphics
- 要減慢的 Graphics 上下文component
- 要緩慢繪製的 JComponentpublic DebugGraphics(Graphics graphics)
graphics
- 要減慢的 Graphics 上下文方法詳細資訊 |
---|
public Graphics create()
Graphics.create
來返回一個 DebugGraphics 物件。
Graphics
中的 create
public Graphics create(int x, int y, int width, int height)
Graphics.create
來返回一個 DebugGraphics 物件。
Graphics
中的 create
x
- x 坐標。y
- y 坐標。width
- 剪貼矩形的寬度。height
- 剪貼矩形的高度。
Graphics.translate(int, int)
,
Graphics.clipRect(int, int, int, int)
public static void setFlashColor(Color flashColor)
public static Color flashColor()
setFlashColor(java.awt.Color)
public static void setFlashTime(int flashTime)
public static int flashTime()
setFlashTime(int)
public static void setFlashCount(int flashCount)
public static int flashCount()
setFlashCount(int)
public static void setLogStream(PrintStream stream)
public static PrintStream logStream()
setLogStream(java.io.PrintStream)
public void setFont(Font aFont)
Graphics
中的 setFont
aFont
- 字體。Graphics.getFont()
,
Graphics.drawString(java.lang.String, int, int)
,
Graphics.drawBytes(byte[], int, int, int, int)
,
Graphics.drawChars(char[], int, int, int, int)
public Font getFont()
Graphics
中的 getFont
setFont(java.awt.Font)
public void setColor(Color aColor)
Graphics
中的 setColor
aColor
- 新的呈現顏色。Color
,
Graphics.getColor()
public Color getColor()
Graphics
中的 getColor
setColor(java.awt.Color)
public FontMetrics getFontMetrics()
Graphics.getFontMetrics
。
Graphics
中的 getFontMetrics
Graphics.getFont()
,
FontMetrics
,
Graphics.getFontMetrics(Font)
public FontMetrics getFontMetrics(Font f)
Graphics.getFontMetrics
。
Graphics
中的 getFontMetrics
f
- 指定的字體
Graphics.getFont()
,
FontMetrics
,
Graphics.getFontMetrics()
public void translate(int x, int y)
Graphics.translate
。
Graphics
中的 translate
x
- x 坐標。y
- y 坐標。public void setPaintMode()
Graphics.setPaintMode
。
Graphics
中的 setPaintMode
public void setXORMode(Color aColor)
Graphics.setXORMode
。
Graphics
中的 setXORMode
aColor
- XOR 交替顏色public Rectangle getClipBounds()
Graphics.getClipBounds
。
Graphics
中的 getClipBounds
null
。Graphics.getClip()
,
Graphics.clipRect(int, int, int, int)
,
Graphics.setClip(int, int, int, int)
,
Graphics.setClip(Shape)
public void clipRect(int x, int y, int width, int height)
Graphics.clipRect
。
Graphics
中的 clipRect
x
- 要與剪貼區相交的矩形的 x 坐標y
- 要與剪貼區相交的矩形的 y 坐標width
- 要與剪貼區相交的矩形的寬度height
- 要與剪貼區相交的矩形的高度Graphics.setClip(int, int, int, int)
,
Graphics.setClip(Shape)
public void setClip(int x, int y, int width, int height)
Graphics.setClip
。
Graphics
中的 setClip
x
- 新剪貼區矩形的 x 坐標。y
- 新剪貼區矩形的 y 坐標。width
- 新剪貼區矩形的寬度。height
- 新剪貼區矩形的高度。Graphics.clipRect(int, int, int, int)
,
Graphics.setClip(Shape)
,
Graphics.getClip()
public Shape getClip()
Graphics.getClip
。
Graphics
中的 getClip
Shape
物件;如果未設置剪貼區,則返回 null
。Graphics.getClipBounds()
,
Graphics.clipRect(int, int, int, int)
,
Graphics.setClip(int, int, int, int)
,
Graphics.setClip(Shape)
public void setClip(Shape clip)
Graphics.setClip
。
Graphics
中的 setClip
clip
- 用來設置剪貼形狀的 Shape
Graphics.getClip()
,
Graphics.clipRect(int, int, int, int)
,
Graphics.setClip(int, int, int, int)
public void drawRect(int x, int y, int width, int height)
Graphics.drawRect
。
Graphics
中的 drawRect
x
- 要繪製矩形的 x 坐標。y
- 要繪製矩形的 y 坐標。width
- 要繪製矩形的寬度。height
- 要繪製矩形的高度。Graphics.fillRect(int, int, int, int)
,
Graphics.clearRect(int, int, int, int)
public void fillRect(int x, int y, int width, int height)
Graphics.fillRect
。
Graphics
中的 fillRect
x
- 要填充矩形的 x 坐標。y
- 要填充矩形的 y 坐標。width
- 要填充矩形的寬度。height
- 要填充矩形的高度。Graphics.clearRect(int, int, int, int)
,
Graphics.drawRect(int, int, int, int)
public void clearRect(int x, int y, int width, int height)
Graphics.clearRect
。
Graphics
中的 clearRect
x
- 要清除矩形的 x 坐標。y
- 要清除矩形的 y 坐標。width
- 要清除矩形的寬度。height
- 要清除矩形的高度。Graphics.fillRect(int, int, int, int)
,
Graphics.drawRect(int, int, int, int)
,
Graphics.setColor(java.awt.Color)
,
Graphics.setPaintMode()
,
Graphics.setXORMode(java.awt.Color)
public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
Graphics.drawRoundRect
。
Graphics
中的 drawRoundRect
x
- 要繪製矩形的 x 坐標。y
- 要繪製矩形的 y 坐標。width
- 要繪製矩形的寬度。height
- 要繪製矩形的高度。arcWidth
- 4 個角弧度的水平直徑。arcHeight
- 4 個角弧度的垂直直徑。Graphics.fillRoundRect(int, int, int, int, int, int)
public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
Graphics.fillRoundRect
。
Graphics
中的 fillRoundRect
x
- 要填充矩形的 x 坐標。y
- 要填充矩形的 y 坐標。width
- 要填充矩形的寬度。height
- 要填充矩形的高度。arcWidth
- 4 個角弧度的水平直徑。arcHeight
- 4 個角弧度的垂直直徑。Graphics.drawRoundRect(int, int, int, int, int, int)
public void drawLine(int x1, int y1, int x2, int y2)
Graphics.drawLine
。
Graphics
中的 drawLine
x1
- 第一個點的 x 坐標。y1
- 第一個點的 y 坐標。x2
- 第二個點的 x 坐標。y2
- 第二個點的 y 坐標。public void draw3DRect(int x, int y, int width, int height, boolean raised)
Graphics.draw3DRect
。
Graphics
中的 draw3DRect
x
- 要繪製矩形的 x 坐標。y
- 要繪製矩形的 y 坐標。width
- 要繪製矩形的寬度。height
- 要繪製矩形的高度。raised
- 一個用於確定矩形是凸出平面顯示還是凹入平面顯示的 boolean 值。Graphics.fill3DRect(int, int, int, int, boolean)
public void fill3DRect(int x, int y, int width, int height, boolean raised)
Graphics.fill3DRect
。
Graphics
中的 fill3DRect
x
- 要填充矩形的 x 坐標。y
- 要填充矩形的 y 坐標。width
- 要填充矩形的寬度。height
- 要填充矩形的高度。raised
- 一個用於確定矩形是凸出平面顯示還是凹入平面顯示的 boolean 值。Graphics.draw3DRect(int, int, int, int, boolean)
public void drawOval(int x, int y, int width, int height)
Graphics.drawOval
。
Graphics
中的 drawOval
x
- 要繪製橢圓的左上角的 x 坐標。y
- 要繪製橢圓的左上角的 y 坐標。width
- 要繪製橢圓的寬度。height
- 要繪製橢圓的高度。Graphics.fillOval(int, int, int, int)
public void fillOval(int x, int y, int width, int height)
Graphics.fillOval
。
Graphics
中的 fillOval
x
- 要填充橢圓的左上角的 x 坐標。y
- 要填充橢圓的左上角的 y 坐標。width
- 要填充橢圓的寬度。height
- 要填充橢圓的高度。Graphics.drawOval(int, int, int, int)
public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
Graphics.drawArc
。
Graphics
中的 drawArc
x
- 要繪製弧的左上角的 x 坐標。y
- 要繪製弧的左上角的 y 坐標。width
- 要繪製弧的寬度。height
- 要繪製弧的高度。startAngle
- 開始角度。arcAngle
- 相對於開始角度而言,弧跨越的角度。Graphics.fillArc(int, int, int, int, int, int)
public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
Graphics.fillArc
。
Graphics
中的 fillArc
x
- 要填充弧的左上角的 x 坐標。y
- 要填充弧的左上角的 y 坐標。width
- 要填充弧的寬度。height
- 要填充弧的高度。startAngle
- 開始角度。arcAngle
- 相對於開始角度而言,弧跨越的角度。Graphics.drawArc(int, int, int, int, int, int)
public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
Graphics.drawPolyline
。
Graphics
中的 drawPolyline
xPoints
- x 點陣列yPoints
- y 點陣列nPoints
- 點的總數Graphics.drawPolygon(int[], int[], int)
public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
Graphics.drawPolygon
。
Graphics
中的 drawPolygon
xPoints
- x
坐標陣列。yPoints
- y
坐標陣列。nPoints
- 點的總數。Graphics.fillPolygon(int[], int[], int)
,
Graphics.drawPolyline(int[], int[], int)
public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
Graphics.fillPolygon
。
Graphics
中的 fillPolygon
xPoints
- x
坐標陣列。yPoints
- y
坐標陣列。nPoints
- 點的總數。Graphics.drawPolygon(int[], int[], int)
public void drawString(String aString, int x, int y)
Graphics.drawString
。
Graphics
中的 drawString
aString
- 要繪製的 string。x
- x 坐標。y
- y 坐標。Graphics.drawBytes(byte[], int, int, int, int)
,
Graphics.drawChars(char[], int, int, int, int)
public void drawString(AttributedCharacterIterator iterator, int x, int y)
Graphics.drawString
。
Graphics
中的 drawString
iterator
- 要繪製其文本的迭代器x
- x 坐標。y
- y 坐標。Graphics.drawBytes(byte[], int, int, int, int)
,
Graphics.drawChars(char[], int, int, int, int)
public void drawBytes(byte[] data, int offset, int length, int x, int y)
Graphics.drawBytes
。
Graphics
中的 drawBytes
data
- 要繪製的資料offset
- 資料的起始偏移量length
- 要繪製的位元組數x
- 文本基線的 x 坐標y
- 文本基線的 y 坐標Graphics.drawChars(char[], int, int, int, int)
,
Graphics.drawString(java.lang.String, int, int)
public void drawChars(char[] data, int offset, int length, int x, int y)
Graphics.drawChars
。
Graphics
中的 drawChars
data
- 要繪製的字元陣列offset
- 資料的初始偏移量length
- 要繪製的字元數x
- 文本基線的 x 坐標y
- 文本基線的 y 坐標Graphics.drawBytes(byte[], int, int, int, int)
,
Graphics.drawString(java.lang.String, int, int)
public boolean drawImage(Image img, int x, int y, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。x
- x 坐標。y
- y 坐標。observer
- 轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。x
- x 坐標。y
- y 坐標。width
- 矩形的寬度。height
- 矩形的高度。observer
- 轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。x
- x 坐標。y
- y 坐標。bgcolor
- 在圖像非透明部分下繪製的背景色。observer
- 當轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。x
- x 坐標。y
- y 坐標。width
- 矩形的寬度。height
- 矩形的高度。bgcolor
- 在圖像非透明部分下繪製的背景色。observer
- 當轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。dx1
- 目標矩形第一個角的 x 坐標。dy1
- 目標矩形第一個角的 y 坐標。dx2
- 目標矩形第二個角的 x 坐標。dy2
- 目標矩形第二個角的 y 坐標。sx1
- 源矩形第一個角的 x 坐標。sy1
- 源矩形第一個角的 y 坐標。sx2
- 源矩形第二個角的 x 坐標。sy2
- 源矩形第二個角的 y 坐標。observer
- 當縮放並轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
Graphics.drawImage
。
Graphics
中的 drawImage
img
- 要繪製的指定圖像。如果 img
為 null,則此方法不執行任何操作。dx1
- 目標矩形第一個角的 x 坐標。dy1
- 目標矩形第一個角的 y 坐標。dx2
- 目標矩形第二個角的 x 坐標。dy2
- 目標矩形第二個角的 y 坐標。sx1
- 源矩形第一個角的 x 坐標。sy1
- 源矩形第一個角的 y 坐標。sx2
- 源矩形第二個角的 x 坐標。sy2
- 源矩形第二個角的 y 坐標。bgcolor
- 在圖像非透明部分下繪製的背景色。observer
- 當縮放並轉換了更多圖像時要通知的物件。
false
;否則返回 true
。Image
,
ImageObserver
,
ImageObserver.imageUpdate(java.awt.Image, int, int, int, int, int)
public void copyArea(int x, int y, int width, int height, int destX, int destY)
Graphics.copyArea
。
Graphics
中的 copyArea
x
- 源矩形的 x 坐標。y
- 源矩形的 y 坐標。width
- 源矩形的寬度。height
- 源矩形的高度。destX
- 複製像素的水平距離。destY
- 複製像素的垂直距離。public void dispose()
Graphics.dispose
。
Graphics
中的 dispose
Graphics.finalize()
,
Component.paint(java.awt.Graphics)
,
Component.update(java.awt.Graphics)
,
Component.getGraphics()
,
Graphics.create()
public boolean isDrawingBuffer()
public void setDebugOptions(int options)
public int getDebugOptions()
setDebugOptions(int)
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。